00001 // 00002 // Body for ClusterType class so that CINT recognizes its existence 00003 // 00004 #include "CandSubShowerSR/ClusterType.h" 00005 00006 //_____________________________________________________________________________ 00007 ClusterType::ClusterType_t ClusterType::CharToEnum(Char_t c) 00008 { 00009 switch (c) { 00010 00011 case 'E': return ClusterType::kEMLike; 00012 case 'H': return ClusterType::kHadLike; 00013 case 'X': return ClusterType::kXTalk; 00014 case 'T': return ClusterType::kTrkLike; 00015 case 'O': return ClusterType::kHalo; 00016 00017 default: return ClusterType::kUnknown; 00018 00019 } 00020 } 00021 00022 //_____________________________________________________________________________
1.3.9.1