ErrCodes

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
#ifndef DQMOFFLINE_TRIGGER_EGHLTERRCODES
#define DQMOFFLINE_TRIGGER_EGHLTERRCODES

//defines our error codes

namespace egHLT {

  namespace errCodes {

    enum ErrCodes {
      NoErr = 0,
      TrigEvent = 1,
      OffEle = 2,
      OffPho = 3,
      OffJet = 4,
      Geom = 5,
      EBRecHits = 6,
      EERecHits = 7,
      IsolTrks = 8,
      HBHERecHits = 9,
      HFRecHits = 10,
      BeamSpot = 11,
      MagField = 12,
      CaloTowers = 13,
      OffVertex = 14
    };

  }

}  // namespace egHLT

#endif