CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCDCSSummary.cc
Go to the documentation of this file.
2 
7 
8 //#include "DQMServices/Core/interface/DQMStore.h"
9 //#include "DQMServices/Core/interface/MonitorElement.h"
10 
11 //CondFormats
14 
15 
17 
18  numberOfDisks_ = ps.getUntrackedParameter<int>("NumberOfEndcapDisks", 4);
19 
20  FEDRange_.first = ps.getUntrackedParameter<unsigned int>("MinimumRPCFEDId", 790);
21  FEDRange_.second = ps.getUntrackedParameter<unsigned int>("MaximumRPCFEDId", 792);
22 
23  offlineDQM_ = ps.getUntrackedParameter<bool> ("OfflineDQM",true);
24 
25  NumberOfFeds_ =FEDRange_.second - FEDRange_.first +1;
26  init_=false;
27  defaultValue_ = 1.;
28 }
29 
31 
33 
35 
36  if(!init_){
37  this->checkDCSbit(setup);
38  if(!offlineDQM_ ){this->myBooker(ibooker);}
39  }
40 }
41 
42 
44 
45  if( offlineDQM_){this->myBooker(ibooker);}
46 }
47 
48 
49 
51 
53 
54  defaultValue_ = 1.;
55 
56  if(0 != setup.find( recordKey ) ) {
57  defaultValue_ = -1.;
58  //get fed summary information
60  setup.get<RunInfoRcd>().get(sumFED);
61  std::vector<int> FedsInIds= sumFED->m_fed_in;
62  unsigned int f = 0;
63  bool flag = false;
64  while(!flag && f < FedsInIds.size()) {
65  int fedID=FedsInIds[f];
66  //make sure fed id is in allowed range
67  if(fedID>=FEDRange_.first && fedID<=FEDRange_.second) {
68  defaultValue_ = 1.;
69  flag = true;
70  }
71  f++;
72  }
73  }
74  init_ = true;
75 }
76 
78 
79  ibooker.setCurrentFolder("RPC/EventInfo");
80  // global fraction
81  totalDCSFraction = ibooker.bookFloat("DCSSummary");
83 
84  DCSMap_ = ibooker.book2D( "DCSSummaryMap","RPC DCS Summary Map",15, -7.5, 7.5, 12, 0.5 ,12.5);
85 
86  //customize the 2d histo
87  std::stringstream BinLabel;
88  for (int i= 1 ; i<13; i++){
89  BinLabel.str("");
90  BinLabel<<"Sec"<<i;
91  DCSMap_->setBinLabel(i,BinLabel.str(),2);
92  }
93 
94  for(int i = -2; i<=2; i++){
95  BinLabel.str("");
96  BinLabel<<"Wheel"<<i;
97  DCSMap_->setBinLabel((i+8),BinLabel.str(),1);
98  }
99 
100  for(int i = 1; i<=numberOfDisks_; i++){
101  BinLabel.str("");
102  BinLabel<<"Disk"<<i;
103  DCSMap_->setBinLabel((i+11),BinLabel.str(),1);
104  BinLabel.str("");
105  BinLabel<<"Disk"<<-i;
106  DCSMap_->setBinLabel((-i+5),BinLabel.str(),1);
107  }
108 
109  //fill the histo with "1" --- just for the moment
110  for(int i=1; i<=15; i++){
111  for (int j=1; j<=12; j++ ){
112  if(i==5 || i==11 || (j>6 && (i<6 || i>10)))
113  DCSMap_->setBinContent(i,j,-1);//bins that not correspond to subdetector parts
114  else
116  }
117  }
118 
119 
120  if(numberOfDisks_ < 4){
121  for (int j=1; j<=12; j++ ){
122  DCSMap_->setBinContent(1,j,-1);//bins that not correspond to subdetector parts
123  DCSMap_->setBinContent(15,j,-1);
124  }
125  }
126 
127  // book the ME
128  ibooker.setCurrentFolder("RPC/EventInfo/DCSContents");
129 
130  int limit = numberOfDisks_;
131  if(numberOfDisks_ < 2) limit = 2;
132 
133 
134  for (int i = -1 * limit; i<= limit;i++ ){//loop on wheels and disks
135  if (i>-3 && i<3){//wheels
136  std::stringstream streams;
137  streams << "RPC_Wheel" << i;
138  dcsWheelFractions[i+2] = ibooker.bookFloat(streams.str());
140  }
141 
142  if (i == 0 || i > numberOfDisks_ || i< (-1 * numberOfDisks_))continue;
143 
144  int offset = numberOfDisks_;
145  if (i>0) offset --; //used to skip case equale to zero
146  std::stringstream streams;
147  streams << "RPC_Disk" << i;
148  dcsDiskFractions[i+2] = ibooker.bookFloat(streams.str());
150  }
151 }
152 
153 
154 
155 
156 
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
void setBinContent(int binx, double content)
set content of bin (1-D)
MonitorElement * DCSMap_
Definition: RPCDCSSummary.h:35
void myBooker(DQMStore::IBooker &)
RPCDCSSummary(const edm::ParameterSet &)
Constructor.
void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
double defaultValue_
Definition: RPCDCSSummary.h:31
MonitorElement * totalDCSFraction
Definition: RPCDCSSummary.h:36
const eventsetup::EventSetupRecord * find(const eventsetup::EventSetupRecordKey &) const
Definition: EventSetup.cc:90
void Fill(long long x)
MonitorElement * dcsDiskFractions[10]
Definition: RPCDCSSummary.h:38
virtual ~RPCDCSSummary()
Destructor.
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &)
int j
Definition: DBlmapReader.cc:9
double f[11][100]
void checkDCSbit(edm::EventSetup const &)
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
const T & get() const
Definition: EventSetup.h:55
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
MonitorElement * dcsWheelFractions[5]
Definition: RPCDCSSummary.h:37
MonitorElement * bookFloat(Args &&...args)
Definition: DQMStore.h:109
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
std::pair< int, int > FEDRange_
Definition: RPCDCSSummary.h:39
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
Definition: HCTypeTag.cc:125