Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:49

0001 #ifndef DQMOFFLINE_TRIGGER_EGHLTERRCODES
0002 #define DQMOFFLINE_TRIGGER_EGHLTERRCODES
0003 
0004 //defines our error codes
0005 
0006 namespace egHLT {
0007 
0008   namespace errCodes {
0009 
0010     enum ErrCodes {
0011       NoErr = 0,
0012       TrigEvent = 1,
0013       OffEle = 2,
0014       OffPho = 3,
0015       OffJet = 4,
0016       Geom = 5,
0017       EBRecHits = 6,
0018       EERecHits = 7,
0019       IsolTrks = 8,
0020       HBHERecHits = 9,
0021       HFRecHits = 10,
0022       BeamSpot = 11,
0023       MagField = 12,
0024       CaloTowers = 13,
0025       OffVertex = 14
0026     };
0027 
0028   }
0029 
0030 }  // namespace egHLT
0031 
0032 #endif