private static string GetHeadTag(Tree t)
 {
     if (PartsOfSpeech.IsNoun(t.Value()))
     {
         return(Noun);
     }
     else if (PartsOfSpeech.IsAdjective(t.Value()))
     {
         return(Adjective);
     }
     else
     {
         return(Noun);
     }
 }