Go to the documentation of this file.00001 #ifndef HcalRawDataClient_GUARD_H
00002 #define HcalRawDataClient_GUARD_H
00003 #define NUMDCCS 32
00004 #define NUMSPGS 15
00005 #define HTRCHANMAX 24
00006
00007 #include "DQM/HcalMonitorClient/interface/HcalBaseDQClient.h"
00008 #include "FWCore/Framework/interface/MakerMacros.h"
00009 #include "FWCore/ServiceRegistry/interface/Service.h"
00010 #include "CondFormats/HcalObjects/interface/HcalElectronicsMap.h"
00011
00012 class HcalRawDataClient : public HcalBaseDQClient {
00013
00014 public:
00015
00017 HcalRawDataClient(){name_="";};
00018 HcalRawDataClient(std::string myname);
00019 HcalRawDataClient(std::string myname, const edm::ParameterSet& ps);
00020
00021 void analyze(void);
00022 void calculateProblems(void);
00023 void updateChannelStatus(std::map<HcalDetId, unsigned int>& myqual);
00024 void beginJob(void);
00025 void endJob(void);
00026 void beginRun(void);
00027 void endRun(void);
00028 void setup(void);
00029 void cleanup(void);
00030 void endLuminosityBlock(void);
00031 bool hasErrors_Temp(void);
00032 bool hasWarnings_Temp(void);
00033 bool hasOther_Temp(void);
00034 bool test_enabled(void);
00035
00037 ~HcalRawDataClient();
00038
00039 private:
00040 int nevts_;
00041
00042 const HcalElectronicsMap* readoutMap_;
00043
00044 inline int hashup(uint32_t d=0, uint32_t s=0, uint32_t c=1) {
00045 return (int) ( (d*NUMSPGS*HTRCHANMAX)+(s*HTRCHANMAX)+(c)); }
00046 void stashHDI(int thehash, HcalDetId thehcaldetid);
00047
00048 inline HcalDetId HashToHDI(int thehash) {
00049 return ( ( (thehash<0) || (thehash>(NUMDCCS*NUMSPGS*HTRCHANMAX)) )
00050 ?(HcalDetId::Undefined)
00051 :(hashedHcalDetId_[thehash]));
00052 };
00053 HcalDetId hashedHcalDetId_[NUMDCCS * NUMSPGS * HTRCHANMAX];
00054
00055 float numTS_[NUMDCCS*NUMSPGS];
00056
00057 TH2F* meCDFErrorFound_;
00058 TH2F* meDCCEventFormatError_;
00059 TH2F* meOrNSynch_;
00060 TH2F* meBCNSynch_;
00061 TH2F* meEvtNumberSynch_;
00062 TH2F* LRBDataCorruptionIndicators_;
00063 TH2F* HalfHTRDataCorruptionIndicators_;
00064 TH2F* DataFlowInd_;
00065 TH2F* ChannSumm_DataIntegrityCheck_;
00066
00067 TH2F* Chann_DataIntegrityCheck_[NUMDCCS];
00068
00069 void getHardwareSpaceHistos(void);
00070
00071 void fillProblemCountArray(void);
00072 uint64_t problemcount[85][72][4];
00073 void mapDCCproblem (int dcc, float n) ;
00074 void mapHTRproblem (int dcc, int spigot, float n) ;
00075 void mapChannproblem(int dcc, int spigot, int htrchan, float n);
00076
00077 void normalizeHardwareSpaceHistos(void);
00078
00079 bool excludeHORing2_;
00080 };
00081
00082 #endif