SusyNtuple
|
00001 #ifndef SUSY_TAUID_H 00002 #define SUSY_TAUID_H 00003 00004 #include <string> 00005 00006 namespace Susy 00007 { 00008 00009 enum class TauId { 00010 None, 00011 Loose, 00012 Medium, 00013 Tight, 00014 Invalid 00015 }; 00016 00018 std::string TauId2str(const TauId &t); 00019 00020 00021 } // namespace Susy 00022 00023 00024 #endif