CMS 3D CMS Logo

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