Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:17

0001 #ifndef DATAFORMATS_HCALDETID_HCALSUBDETECTOR_H
0002 #define DATAFORMATS_HCALDETID_HCALSUBDETECTOR_H 1
0003 
0004 enum HcalSubdetector {
0005   HcalEmpty = 0,
0006   HcalBarrel = 1,
0007   HcalEndcap = 2,
0008   HcalOuter = 3,
0009   HcalForward = 4,
0010   HcalTriggerTower = 5,
0011   HcalOther = 7
0012 };
0013 
0014 enum HcalOtherSubdetector {
0015   HcalOtherEmpty = 0,
0016   HcalCalibration = 2,
0017   HcalDcsBarrel = 3,
0018   HcalDcsEndcap = 4,
0019   HcalDcsOuter = 5,
0020   HcalDcsForward = 6
0021 };
0022 
0023 #endif