SusyNtuple
|
00001 // Dear emacs, this is -*- c++ -*- 00002 #ifndef SUSYNTUPLE_ANALYSISTYPE_H 00003 #define SUSYNTUPLE_ANALYSISTYPE_H 00004 00005 #include <string> 00006 00007 namespace Susy 00008 { 00010 enum class AnalysisType { 00011 Ana_2Lep, 00012 Ana_3Lep, 00013 Ana_2LepWH, 00014 Ana_SS3L, 00015 Ana_Stop2L, 00016 kUnknown 00017 }; 00019 std::string AnalysisType2str(const AnalysisType &a); 00020 00021 } // Susy 00022 #endif