CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/RecoLocalCalo/HcalRecAlgos/interface/HcalCaloFlagLabels.h

Go to the documentation of this file.
00001 #ifndef GUARD_HCALCALOFLAGLABELS_H
00002 #define GUARD_HCALCALOFLAGLABELS_H
00003 
00004 #include "DataFormats/HcalDetId/interface/HcalSubdetector.h"
00005 #include <string>
00006 
00007 // Create alias names for all status bits
00008 // These aliases are valid for only the _current release_
00009 // Use the HcalCaloFlagTool (below) for full interpretation
00010 namespace HcalCaloFlagLabels
00011 {
00012   //subdetector-specific bits defined here (bits 0-15)
00013   enum HBHEStatusFlag{HBHEHpdHitMultiplicity=0,
00014                       HBHEPulseShape=1,
00015                       HSCP_R1R2=2,
00016                       HSCP_FracLeader=3,
00017                       HSCP_OuterEnergy=4,
00018                       HSCP_ExpFit=5,
00019                       HBHETimingTrustBits=6, // 2-bit counter; not yet in use
00020                       HBHETimingShapedCutsBits=8, // 3-bit counter
00021                       HBHEIsolatedNoise=11,
00022                       HBHEFlatNoise=12,
00023                       HBHESpikeNoise=13,
00024                       HBHETriangleNoise=14,
00025                       HBHETS4TS5Noise=15
00026   };
00027 
00028   enum HFTimingTrustFlag{HFTimingTrustBits=6};
00029 
00030   enum HOStatusFlag{HOBit=0};
00031 
00032   enum HFStatusFlag{HFLongShort=0,
00033                     HFDigiTime=1,
00034                     HFInTimeWindow=2, // requires hit be within certain time window
00035                     HFS8S1Ratio=3,
00036                     HFPET=4
00037   };
00038 
00039 
00040   enum ZDCStatusFlag{ZDCBit=0};
00041 
00042   enum CalibrationFlag{CalibrationBit=0};
00043 
00044   // Bit definitions that apply to all subdetectors (bits 16-31)
00045   enum CommonFlag {TimingSubtractedBit=16, // latency shift correction, recovered
00046                    TimingAddedBit=17,      // latency shift correction, recovered
00047                    TimingErrorBit=18,      // latency shift error, unrecovered
00048                    ADCSaturationBit=19,
00049                    Fraction2TS=20, // should deprecate this at some point
00050                    PresampleADC=20, // uses 7 bits to store ADC from presample
00051                    // The following bits are all user-defined; reverse-order them so that UserDefinedBit0 will be the last removed
00052                    UserDefinedBit2 = 29,
00053                    UserDefinedBit1 = 30,
00054                    UserDefinedBit0 = 31
00055 }; 
00056   
00057 }
00058 
00062 class HcalCaloFlagTool {
00063 public:
00064   HcalCaloFlagTool(const std::string& releaseName);
00065   std::string getFieldName(HcalSubdetector sd, int bit) const;
00066   int getFieldWidth(HcalSubdetector sd, int bit) const;
00067   int getFieldStart(HcalSubdetector sd, const std::string& field) const;
00068   int getFieldWidth(HcalSubdetector sd, const std::string& field) const;
00069   bool hasField(HcalSubdetector sd, const std::string& field) const;
00070   bool hasField(HcalSubdetector sd, int bit) const;
00071 private:
00072   std::string releaseName_;
00073   bool standardFormat_;
00074   int major_, minor_, patch_, subpatch_;
00075 };
00076 
00077 #endif