CMS 3D CMS Logo

DTLocalTriggerSynchTest.cc
Go to the documentation of this file.
1 /*
2  * See header file for a description of this class.
3  *
4  * \author C. Battilana - CIEMAT
5  *
6  * threadsafe version (//-) oct/nov 2014 - WATWanAbdullah -ncpp-um-my
7  *
8  */
9 
10 
11 // This class header
13 
14 // Framework headers
19 
20 // Geometry
24 
25 // DB & Calib
30 
31 
32 // Root
33 #include "TF1.h"
34 #include "TProfile.h"
35 
36 
37 //C++ headers
38 #include <iostream>
39 #include <sstream>
40 
41 using namespace edm;
42 using namespace std;
43 
44 
46 
47  setConfig(ps,"DTLocalTriggerSynch");
48  baseFolderTM = "DT/90-LocalTriggerSynch/";
49  baseFolderDDU = "DT/90-LocalTriggerSynch/";
50 
51  bookingdone = 0;
52 
53 }
54 
55 
57 
58 }
59 
60 
62 
63  numHistoTag = parameters.getParameter<string>("numHistoTag");
64  denHistoTag = parameters.getParameter<string>("denHistoTag");
65  ratioHistoTag = parameters.getParameter<string>("ratioHistoTag");
66  bxTime = parameters.getParameter<double>("bxTimeInterval");
67  rangeInBX = parameters.getParameter<bool>("rangeWithinBX");
68  nBXLow = parameters.getParameter<int>("nBXLow");
69  nBXHigh = parameters.getParameter<int>("nBXHigh");
70  minEntries = parameters.getParameter<int>("minEntries");
71 
73 }
74 
75 
77  edm::LuminosityBlock const & lumiSeg, edm::EventSetup const & c) {
78 
79  if (bookingdone) return;
80 
81  vector<string>::const_iterator iTr = trigSources.begin();
82  vector<string>::const_iterator trEnd = trigSources.end();
83  vector<string>::const_iterator iHw = hwSources.begin();
84  vector<string>::const_iterator hwEnd = hwSources.end();
85 
86  //Booking
87  if(parameters.getUntrackedParameter<bool>("staticBooking", true)){
88  for (; iTr != trEnd; ++iTr){
89  trigSource = (*iTr);
90  for (; iHw != hwEnd; ++iHw){
91  hwSource = (*iHw);
92  std::vector<const DTChamber*>::const_iterator chambIt = muonGeom->chambers().begin();
93  std::vector<const DTChamber*>::const_iterator chambEnd = muonGeom->chambers().end();
94  for (; chambIt!=chambEnd; ++chambIt) {
95  DTChamberId chId = ((*chambIt)->id());
96  bookChambHistos(ibooker,chId,ratioHistoTag);
97  }
98  }
99  }
100  }
101 
102  LogVerbatim(category()) << "[" << testName << "Test]: book Histograms" << endl;
103 
104  if (parameters.getParameter<bool>("fineParamDiff")) {
105  ESHandle<DTTPGParameters> wPhaseHandle;
106  c.get<DTTPGParametersRcd>().get(wPhaseHandle);
107  wPhaseMap = (*wPhaseHandle);
108  }
109 
110  bookingdone = 1;
111 
112 }
113 
114 
116 
117  // Loop over Trig & Hw sources
118  for (vector<string>::const_iterator iTr = trigSources.begin(); iTr != trigSources.end(); ++iTr){
119  trigSource = (*iTr);
120  for (vector<string>::const_iterator iHw = hwSources.begin(); iHw != hwSources.end(); ++iHw){
121  hwSource = (*iHw);
122  std::vector<const DTChamber*>::const_iterator chambIt = muonGeom->chambers().begin();
123  std::vector<const DTChamber*>::const_iterator chambEnd = muonGeom->chambers().end();
124  for (; chambIt!=chambEnd; ++chambIt) {
125  DTChamberId chId = (*chambIt)->id();
126  uint32_t indexCh = chId.rawId();
127 
128  // Perform peak finding
129 
130  TH1F *numH = getHisto<TH1F>(igetter.get(getMEName(numHistoTag,"", chId)));
131  TH1F *denH = getHisto<TH1F>(igetter.get(getMEName(denHistoTag,"", chId)));
132 
133  if (numH && denH && numH->GetEntries()>minEntries && denH->GetEntries()>minEntries) {
134  std::map<std::string,MonitorElement*> innerME = chambME[indexCh];
135  MonitorElement* ratioH = innerME.find(fullName(ratioHistoTag))->second;
136  makeRatioME(numH,denH,ratioH);
137  try {
138  //Need our own copy to avoid threading problems
139  TF1 mypol8("mypol8","pol8");
140  getHisto<TH1F>(ratioH)->Fit(&mypol8,"CQO");
141  } catch (cms::Exception& iException) {
142  edm::LogPrint(category()) << "[" << testName
143  << "Test]: Error fitting "
144  << ratioH->getName() << " returned 0" << endl;
145  }
146  } else {
147  if (!numH || !denH) {
148  LogPrint(category()) << "[" << testName
149  << "Test]: At least one of the required Histograms was not found for chamber "
150  << chId << ". Peaks not computed" << endl;
151  } else {
152  LogPrint(category()) << "[" << testName
153  << "Test]: Number of plots entries for "
154  << chId << " is less than minEntries="
155  << minEntries <<". Peaks not computed" << endl;
156  }
157  }
158 
159  }
160  }
161  }
162 
163 }
164 
166 
167  DTLocalTriggerBaseTest::dqmEndJob(ibooker,igetter);
168 
169  if ( parameters.getParameter<bool>("writeDB")) {
170  LogVerbatim(category()) << "[" << testName
171  << "Test]: writeDB flag set to true. Producing peak position database." << endl;
172 
173  DTTPGParameters* delayMap = new DTTPGParameters();
174  hwSource = parameters.getParameter<bool>("dbFromTM") ? "TM" : "DDU";
175  std::vector<const DTChamber*>::const_iterator chambIt = muonGeom->chambers().begin();
176  std::vector<const DTChamber*>::const_iterator chambEnd = muonGeom->chambers().end();
177  for (; chambIt!=chambEnd; ++chambIt) {
178 
179  DTChamberId chId = (*chambIt)->id();
180  float fineDelay = 0;
181  int coarseDelay = static_cast<int>((getFloatFromME(igetter,chId,"tTrig_SL1") +
182  getFloatFromME(igetter,chId,"tTrig_SL3"))*0.5/bxTime);
183 
184  bool fineDiff = parameters.getParameter<bool>("fineParamDiff");
185  bool coarseDiff = parameters.getParameter<bool>("coarseParamDiff");
186 
187  TH1F *ratioH = getHisto<TH1F>(igetter.get(getMEName(ratioHistoTag,"", chId)));
188  if (ratioH->GetEntries()>minEntries) {
189  TF1 *fitF=ratioH->GetFunction("mypol8");
190  if (fitF) { fineDelay=fitF->GetMaximumX(0,bxTime); }
191  } else {
192  LogInfo(category()) << "[" << testName
193  << "Test]: Ratio histogram for chamber " << chId
194  << " is empty. Worst Phase value set to 0." << endl;
195  }
196 
197  if (fineDiff || coarseDiff) {
198  float wFine;
199  int wCoarse;
200  wPhaseMap.get(chId,wCoarse,wFine,DTTimeUnits::ns);
201  if (fineDiff) { fineDelay = wFine - fineDelay; }
202  if (coarseDiff) { coarseDelay = wCoarse - coarseDelay; }
203  }
204  delayMap->set(chId,coarseDelay,fineDelay,DTTimeUnits::ns);
205  }
206 
207  std::vector< std::pair<DTTPGParametersId,DTTPGParametersData> >::const_iterator dbIt = delayMap->begin();
208  std::vector< std::pair<DTTPGParametersId,DTTPGParametersData> >::const_iterator dbEnd = delayMap->end();
209  for (; dbIt!=dbEnd; ++dbIt) {
210  LogVerbatim(category()) << "[" << testName << "Test]: DB entry for Wh " << (*dbIt).first.wheelId
211  << " Sec " << (*dbIt).first.sectorId
212  << " St " << (*dbIt).first.stationId
213  << " has coarse " << (*dbIt).second.nClock
214  << " and phase " << (*dbIt).second.tPhase << std::endl;
215  }
216 
217  string delayRecord = "DTTPGParametersRcd";
218  DTCalibDBUtils::writeToDB(delayRecord,delayMap);
219 
220  }
221 
222 }
223 
224 
225 
227 
228  TH1F* efficiency = result->getTH1F();
229  efficiency->Divide(numerator,denominator,1,1,"");
230 
231 }
232 
234  DTChamberId chId, std::string meType) {
235 
236  stringstream wheel; wheel << chId.wheel();
237  stringstream station; station << chId.station();
238  stringstream sector; sector << chId.sector();
239 
240  string folderName = topFolder(hwSource=="TM") + "Wheel" + wheel.str() +
241  "/Sector" + sector.str() + "/Station" + station.str() + "/" ;
242 
243  string histoname = sourceFolder + folderName
244  + meType
245  + "_W" + wheel.str()
246  + "_Sec" + sector.str()
247  + "_St" + station.str();
248 
249  MonitorElement* me = igetter.get(histoname);
250  if (me) {
251  return me->getFloatValue();
252  }
253  else {
254  LogProblem(category()) << "[" << testName << "Test]: " << histoname << " is not a valid ME. 0 returned" << std::endl;
255  }
256 
257  return 0;
258 
259  }
260 
262  DTChamberId chambId, string htype, string subfolder) {
263 
264  stringstream wheel; wheel << chambId.wheel();
265  stringstream station; station << chambId.station();
266  stringstream sector; sector << chambId.sector();
267 
268  string fullType = fullName(htype);
269  bool isTM = hwSource=="TM" ;
270  string HistoName = fullType + "_W" + wheel.str() + "_Sec" + sector.str() + "_St" + station.str();
271 
272  string folder = topFolder(isTM) + "Wheel" + wheel.str() + "/Sector" + sector.str() + "/Station" + station.str();
273  if ( subfolder!="") { folder += "7" + subfolder; }
274 
275  ibooker.setCurrentFolder(folder);
276 
277  LogPrint(category()) << "[" << testName << "Test]: booking " << folder << "/" <<HistoName;
278 
279 
280  uint32_t indexChId = chambId.rawId();
281  float min = rangeInBX ? 0 : nBXLow*bxTime;
282  float max = rangeInBX ? bxTime : nBXHigh*bxTime;
283  int nbins = static_cast<int>(ceil( rangeInBX ? bxTime : (nBXHigh-nBXLow)*bxTime));
284 
285  chambME[indexChId][fullType] = ibooker.book1D(HistoName.c_str(),"All/HH ratio vs Muon Arrival Time",nbins,min,max);
286 
287 }
const std::string & getName(void) const
get name of ME
numerator
Definition: cuy.py:483
const_iterator begin() const
int set(int wheelId, int stationId, int sectorId, int nc, float ph, DTTimeUnits::type unit)
MonitorElement * get(const std::string &path)
Definition: DQMStore.cc:305
void beginRun(edm::Run const &run, edm::EventSetup const &context)
BeginRun.
void beginRun(const edm::Run &run, const edm::EventSetup &c)
begin Run
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
virtual ~DTLocalTriggerSynchTest()
Destructor.
Definition: Fit.h:34
double getFloatValue(void) const
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
EventID const & min(EventID const &lh, EventID const &rh)
Definition: EventID.h:137
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &)
Perform client diagnostic in online.
const_iterator end() const
float getFloatFromME(DQMStore::IGetter &, DTChamberId chId, std::string meType)
Get float MEs.
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &)
DTLocalTriggerSynchTest(const edm::ParameterSet &ps)
Constructor.
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:277
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &)
denominator
Definition: cuy.py:484
const T & get() const
Definition: EventSetup.h:56
TH1F * getTH1F(void) const
std::string HistoName
void makeRatioME(TH1F *numerator, TH1F *denominator, MonitorElement *result)
Compute efficiency plots.
void bookChambHistos(DQMStore::IBooker &, DTChamberId chambId, std::string htype, std::string subfolder="")
Book the new MEs (for each chamber)
HLT enums.
int sector() const
Definition: DTChamberId.h:61
int station() const
Return the station number.
Definition: DTChamberId.h:51
int wheel() const
Return the wheel number.
Definition: DTChamberId.h:45
static void writeToDB(std::string record, T *payload)
void runClientDiagnostic(DQMStore::IBooker &, DQMStore::IGetter &)
DQM Client Diagnostic.
Definition: Run.h:42
EventID const & max(EventID const &lh, EventID const &rh)
Definition: EventID.h:142