CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1RCTNoisyChannelMask.h
Go to the documentation of this file.
1 #ifndef L1TObjects_L1RCTNoisyChannelMask_h
2 #define L1TObjects_L1RCTNoisyChannelMask_h
4 
5 #include <ostream>
6 
7 
9 
10  bool ecalMask[18][2][28];
11  bool hcalMask[18][2][28];
12  bool hfMask[18][2][4];
13 
16  float hfThreshold;
17 
18 
19  void print(std::ostream& s) const{
20  s << "Printing record L1RCTNoisyChannelMaskRcd " << std::endl;
21 
22  s << "ECAL noise mask threshold: ecalThreshold" << ecalThreshold << std::endl ;
23  s << "HCAL noise mask threshold: hcalThreshold" << hcalThreshold << std::endl ;
24  s << "HF noise mask threshold: hfThreshold" << hfThreshold << std::endl ;
25  s << "Noisy Masked channels in L1RCTNoisyChannelMask" <<std::endl;
26  for(int i = 0; i< 18; i++)
27  for(int j =0; j< 2; j++){
28  for(int k =0; k<28; k++){
29  if(ecalMask[i][j][k])
30  s << "ECAL masked noisy channel: RCT crate " << i << " iphi " << j <<" ieta " <<k <<std::endl;
31  if(hcalMask[i][j][k])
32  s << "HCAL masked noisy channel: RCT crate " << i << " iphi " << j <<" ieta " <<k <<std::endl;
33  }
34  for(int k =0; k<4;k++)
35  if(hfMask[i][j][k])
36  s << "HF masked noisy channel: RCT crate " << i << " iphi " << j <<" ieta " <<k <<std::endl;
37  }
38 
39  }
40 
42 };
43 
44 #endif
int i
Definition: DBlmapReader.cc:9
int j
Definition: DBlmapReader.cc:9
#define COND_SERIALIZABLE
Definition: Serializable.h:37
void print(std::ostream &s) const