CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Member Functions | Private Attributes
DTtTrigCalibrationTest Class Reference

#include <DTtTrigCalibrationTest.h>

Inheritance diagram for DTtTrigCalibrationTest:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 DTtTrigCalibrationTest (const edm::ParameterSet &ps)
 Constructor. More...
 
virtual ~DTtTrigCalibrationTest ()
 Destructor. More...
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Protected Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &c)
 Analyze. More...
 
void beginJob ()
 BeginJob. More...
 
void beginLuminosityBlock (edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &context)
 
void beginRun (const edm::Run &r, const edm::EventSetup &c)
 BeginRun. More...
 
void bookHistos (const DTChamberId &ch)
 book the new ME More...
 
void bookHistos (const DTChamberId &ch, int wh)
 book the summary histograms More...
 
void endJob ()
 Endjob. More...
 
void endLuminosityBlock (edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &c)
 DQM Client Diagnostic. More...
 
std::string getMEName (const DTSuperLayerId &slID)
 Get the ME name. More...
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Private Attributes

DQMStoredbe
 
std::map< uint32_t,
MonitorElement * > 
histos
 
edm::ESHandle< DTGeometrymuonGeom
 
int nevents
 
unsigned int nLumiSegs
 
edm::ParameterSet parameters
 
int percentual
 
int prescaleFactor
 
int run
 
DTTimeBoxFittertheFitter
 
edm::ESHandle< DTTtrigtTrigMap
 
std::map< int, MonitorElement * > wheelHistos
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 

Detailed Description

Definition at line 39 of file DTtTrigCalibrationTest.h.

Constructor & Destructor Documentation

DTtTrigCalibrationTest::DTtTrigCalibrationTest ( const edm::ParameterSet ps)

Constructor.

Definition at line 37 of file DTtTrigCalibrationTest.cc.

References cppFunctionSkipper::operator, Parameters::parameters, and dtDQMClient_cfg::prescaleFactor.

37  {
38 
39  edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest]: Constructor";
40 
41  parameters = ps;
42 
44 
45  theFitter = new DTTimeBoxFitter();
46 
47  prescaleFactor = parameters.getUntrackedParameter<int>("diagnosticPrescale", 3);
48 
49  percentual = parameters.getUntrackedParameter<int>("BadSLpercentual", 10);
50 
51 }
T getUntrackedParameter(std::string const &, T const &) const
DTtTrigCalibrationTest::~DTtTrigCalibrationTest ( )
virtual

Destructor.

Definition at line 54 of file DTtTrigCalibrationTest.cc.

References nevents.

54  {
55 
56  edm::LogVerbatim ("tTrigCalibration") <<"DTtTrigCalibrationTest: analyzed " << nevents << " events";
57 
58  delete theFitter;
59 
60 }

Member Function Documentation

void DTtTrigCalibrationTest::analyze ( const edm::Event e,
const edm::EventSetup c 
)
protectedvirtual

Analyze.

Implements edm::EDAnalyzer.

Definition at line 91 of file DTtTrigCalibrationTest.cc.

References nevents.

91  {
92 
93  nevents++;
94  edm::LogVerbatim ("tTrigCalibration") << "[DTtTrigCalibrationTest]: "<<nevents<<" events";
95 
96 }
void DTtTrigCalibrationTest::beginJob ( void  )
protectedvirtual

BeginJob.

Reimplemented from edm::EDAnalyzer.

Definition at line 63 of file DTtTrigCalibrationTest.cc.

References nevents.

63  {
64 
65  edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest]: BeginJob";
66 
67  nevents = 0;
68 
69 }
void DTtTrigCalibrationTest::beginLuminosityBlock ( edm::LuminosityBlock const &  lumiSeg,
edm::EventSetup const &  context 
)
protectedvirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 81 of file DTtTrigCalibrationTest.cc.

References edm::LuminosityBlockBase::run(), and DTTTrigCorrFirst::run.

81  {
82 
83  edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest]: Begin of LS transition";
84 
85  // Get the run number
86  run = lumiSeg.run();
87 
88 }
void DTtTrigCalibrationTest::beginRun ( const edm::Run r,
const edm::EventSetup c 
)
protectedvirtual

BeginRun.

Reimplemented from edm::EDAnalyzer.

Definition at line 72 of file DTtTrigCalibrationTest.cc.

References edm::EventSetup::get().

72  {
73 
74  edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest]: BeginRun";
75 
76  // Get the geometry
77  context.get<MuonGeometryRecord>().get(muonGeom);
78 
79 }
edm::ESHandle< DTGeometry > muonGeom
void DTtTrigCalibrationTest::bookHistos ( const DTChamberId ch)
protected

book the new ME

Definition at line 240 of file DTtTrigCalibrationTest.cc.

References mergeVDriftHistosByStation::histos, DetId::rawId(), DTChamberId::sector(), DTChamberId::station(), relativeConstraints::station, and DTChamberId::wheel().

240  {
241 
242  stringstream wheel; wheel << ch.wheel();
243  stringstream station; station << ch.station();
244  stringstream sector; sector << ch.sector();
245 
246  string histoName = "tTrigTest_W" + wheel.str() + "_St" + station.str() + "_Sec" + sector.str();
247 
248  dbe->setCurrentFolder("DT/Tests/DTtTrigCalibration");
249 
250  histos[ch.rawId()] = dbe->book1D(histoName.c_str(),histoName.c_str(),3,0,2);
251 
252 }
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:954
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
std::map< uint32_t, MonitorElement * > histos
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 setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:667
void DTtTrigCalibrationTest::bookHistos ( const DTChamberId ch,
int  wh 
)
protected

book the summary histograms

Definition at line 254 of file DTtTrigCalibrationTest.cc.

254  {
255 
256  dbe->setCurrentFolder("DT/Tests/DTtTrigCalibration/SummaryPlot");
257 
258  if(wheelHistos.find(3) == wheelHistos.end()){
259  string histoName = "t_TrigSummary_testFailedByAtLeastBadSL";
260  wheelHistos[3] = dbe->book2D(histoName.c_str(),histoName.c_str(),14,0,14,5,-2,2);
261  wheelHistos[3]->setBinLabel(1,"Sector1",1);
262  wheelHistos[3]->setBinLabel(1,"Sector1",1);
263  wheelHistos[3]->setBinLabel(2,"Sector2",1);
264  wheelHistos[3]->setBinLabel(3,"Sector3",1);
265  wheelHistos[3]->setBinLabel(4,"Sector4",1);
266  wheelHistos[3]->setBinLabel(5,"Sector5",1);
267  wheelHistos[3]->setBinLabel(6,"Sector6",1);
268  wheelHistos[3]->setBinLabel(7,"Sector7",1);
269  wheelHistos[3]->setBinLabel(8,"Sector8",1);
270  wheelHistos[3]->setBinLabel(9,"Sector9",1);
271  wheelHistos[3]->setBinLabel(10,"Sector10",1);
272  wheelHistos[3]->setBinLabel(11,"Sector11",1);
273  wheelHistos[3]->setBinLabel(12,"Sector12",1);
274  wheelHistos[3]->setBinLabel(13,"Sector13",1);
275  wheelHistos[3]->setBinLabel(14,"Sector14",1);
276  wheelHistos[3]->setBinLabel(1,"Wheel-2",2);
277  wheelHistos[3]->setBinLabel(2,"Wheel-1",2);
278  wheelHistos[3]->setBinLabel(3,"Wheel0",2);
279  wheelHistos[3]->setBinLabel(4,"Wheel+1",2);
280  wheelHistos[3]->setBinLabel(5,"Wheel+2",2);
281  }
282 
283  stringstream wheel; wheel <<wh;
284  string histoName = "t_TrigSummary_testFailed_W" + wheel.str();
285  wheelHistos[wh] = dbe->book2D(histoName.c_str(),histoName.c_str(),14,0,14,11,0,11);
286  wheelHistos[wh]->setBinLabel(1,"Sector1",1);
287  wheelHistos[wh]->setBinLabel(2,"Sector2",1);
288  wheelHistos[wh]->setBinLabel(3,"Sector3",1);
289  wheelHistos[wh]->setBinLabel(4,"Sector4",1);
290  wheelHistos[wh]->setBinLabel(5,"Sector5",1);
291  wheelHistos[wh]->setBinLabel(6,"Sector6",1);
292  wheelHistos[wh]->setBinLabel(7,"Sector7",1);
293  wheelHistos[wh]->setBinLabel(8,"Sector8",1);
294  wheelHistos[wh]->setBinLabel(9,"Sector9",1);
295  wheelHistos[wh]->setBinLabel(10,"Sector10",1);
296  wheelHistos[wh]->setBinLabel(11,"Sector11",1);
297  wheelHistos[wh]->setBinLabel(12,"Sector12",1);
298  wheelHistos[wh]->setBinLabel(13,"Sector13",1);
299  wheelHistos[wh]->setBinLabel(14,"Sector14",1);
300  wheelHistos[wh]->setBinLabel(1,"MB1_SL1",2);
301  wheelHistos[wh]->setBinLabel(2,"MB1_SL2",2);
302  wheelHistos[wh]->setBinLabel(3,"MB1_SL3",2);
303  wheelHistos[wh]->setBinLabel(4,"MB2_SL1",2);
304  wheelHistos[wh]->setBinLabel(5,"MB2_SL2",2);
305  wheelHistos[wh]->setBinLabel(6,"MB2_SL3",2);
306  wheelHistos[wh]->setBinLabel(7,"MB3_SL1",2);
307  wheelHistos[wh]->setBinLabel(8,"MB3_SL2",2);
308  wheelHistos[wh]->setBinLabel(9,"MB3_SL3",2);
309  wheelHistos[wh]->setBinLabel(10,"MB4_SL1",2);
310  wheelHistos[wh]->setBinLabel(11,"MB4_SL3",2);
311 
312 }
std::map< int, MonitorElement * > wheelHistos
MonitorElement * book2D(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Book 2D histogram.
Definition: DQMStore.cc:1082
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:667
void DTtTrigCalibrationTest::endJob ( void  )
protectedvirtual

Endjob.

Reimplemented from edm::EDAnalyzer.

Definition at line 203 of file DTtTrigCalibrationTest.cc.

203  {
204 
205  edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest] endjob called!";
206 
207  dbe->rmdir("DT/Tests/DTtTrigCalibration");
208 }
void rmdir(const std::string &fullpath)
Definition: DQMStore.cc:3101
void DTtTrigCalibrationTest::endLuminosityBlock ( edm::LuminosityBlock const &  lumiSeg,
edm::EventSetup const &  c 
)
protectedvirtual

DQM Client Diagnostic.

Reimplemented from edm::EDAnalyzer.

Definition at line 99 of file DTtTrigCalibrationTest.cc.

References bookHistos(), DTTimeUnits::counts, edm::EventSetup::get(), MonitorElement::getTH1F(), timingPdfMaker::histo, mergeVDriftHistosByStation::histos, i, edm::LuminosityBlockBase::id(), j, edm::LuminosityBlockID::luminosityBlock(), Parameters::parameters, dtDQMClient_cfg::prescaleFactor, edm::second(), and DTSuperLayerId::superLayer().

99  {
100 
101 
102  // counts number of updats (online mode) or number of events (standalone mode)
103  //nevents++;
104  // if running in standalone perform diagnostic only after a reasonalbe amount of events
105  //if ( parameters.getUntrackedParameter<bool>("runningStandalone", false) &&
106  // nevents%parameters.getUntrackedParameter<int>("diagnosticPrescale", 1000) != 0 ) return;
107  //edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest]: "<<nevents<<" updates";
108 
109 
110  edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest]: End of LS transition, performing the DQM client operation";
111 
112  // counts number of lumiSegs
113  nLumiSegs = lumiSeg.id().luminosityBlock();
114 
115  // prescale factor
116  if ( nLumiSegs%prescaleFactor != 0 ) return;
117 
118  for(map<int, MonitorElement*> ::const_iterator histo = wheelHistos.begin();
119  histo != wheelHistos.end();
120  histo++) {
121  (*histo).second->Reset();
122  }
123 
124  edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest]: "<<nLumiSegs<<" updates";
125 
126  context.get<DTTtrigRcd>().get(tTrigMap);
127  float tTrig, tTrigRMS,kFactor;
128 
129  map <pair<int,int>, int> cmsHistos;
130  cmsHistos.clear();
131  map <pair<int,int>, bool> filled;
132  for(int i=-2; i<3; i++){
133  for(int j=1; j<15; j++){
134  filled[make_pair(i,j)]=false;
135  }
136  }
137 
138  vector<const DTChamber*>::const_iterator ch_it = muonGeom->chambers().begin();
139  vector<const DTChamber*>::const_iterator ch_end = muonGeom->chambers().end();
140  for (; ch_it != ch_end; ++ch_it) {
141 
142  vector<const DTSuperLayer*>::const_iterator sl_it = (*ch_it)->superLayers().begin();
143  vector<const DTSuperLayer*>::const_iterator sl_end = (*ch_it)->superLayers().end();
144  for(; sl_it != sl_end; ++sl_it) {
145 
146  DTSuperLayerId slID = (*sl_it)->id();
147 
148  MonitorElement * tb_histo = dbe->get(getMEName(slID));
149  if (tb_histo) {
150 
151  edm::LogVerbatim ("tTrigCalibration") <<"[DTtTrigCalibrationTest]: I've got the histo!!";
152 
153  TH1F * tb_histo_root = tb_histo->getTH1F();
154 
155  pair<double, double> meanAndSigma = theFitter->fitTimeBox(tb_histo_root);
156 
157  // ttrig and rms are counts
158  tTrigMap->get(slID, tTrig, tTrigRMS, kFactor, DTTimeUnits::counts );
159 
160  if (histos.find((*ch_it)->id().rawId()) == histos.end()) bookHistos((*ch_it)->id());
161  histos.find((*ch_it)->id().rawId())->second->setBinContent(slID.superLayer(), meanAndSigma.first-tTrig);
162 
163  }
164  }
165 
166  if (histos.find((*ch_it)->id().rawId()) != histos.end()) {
167  string criterionName = parameters.getUntrackedParameter<string>("tTrigTestName","tTrigOffSet");
168  const QReport * theQReport = histos.find((*ch_it)->id().rawId())->second->getQReport(criterionName);
169  if(theQReport) {
170  vector<dqm::me_util::Channel> badChannels = theQReport->getBadChannels();
171  for (vector<dqm::me_util::Channel>::iterator channel = badChannels.begin();
172  channel != badChannels.end(); channel++) {
173  edm::LogError ("tTrigCalibration") <<"Chamber ID : "<<(*ch_it)->id()<<" Bad channels: "<<(*channel).getBin()<<" "<<(*channel).getContents();
174  if(wheelHistos.find((*ch_it)->id().wheel()) == wheelHistos.end()) bookHistos((*ch_it)->id(), (*ch_it)->id().wheel());
175  // fill the wheel summary histos if the SL has not passed the test
176  if(!((*ch_it)->id().station() == 4 && (*channel).getBin() == 3))
177  wheelHistos[(*ch_it)->id().wheel()]->Fill((*ch_it)->id().sector()-1,((*channel).getBin()-1)+3*((*ch_it)->id().station()-1));
178  else
179  wheelHistos[(*ch_it)->id().wheel()]->Fill((*ch_it)->id().sector()-1,10);
180  // fill the cms summary histo if the percentual of SL which have not passed the test
181  // is more than a predefined treshold
182  cmsHistos[make_pair((*ch_it)->id().wheel(),(*ch_it)->id().sector())]++;
183  if(((*ch_it)->id().sector()<13 &&
184  double(cmsHistos[make_pair((*ch_it)->id().wheel(),(*ch_it)->id().sector())])/11>double(percentual)/100 &&
185  filled[make_pair((*ch_it)->id().wheel(),(*ch_it)->id().sector())]==false) ||
186  ((*ch_it)->id().sector()>=13 &&
187  double(cmsHistos[make_pair((*ch_it)->id().wheel(),(*ch_it)->id().sector())])/2>double(percentual)/100 &&
188  filled[make_pair((*ch_it)->id().wheel(),(*ch_it)->id().sector())]==false)){
189  filled[make_pair((*ch_it)->id().wheel(),(*ch_it)->id().sector())]=true;
190  wheelHistos[3]->Fill((*ch_it)->id().sector()-1,(*ch_it)->id().wheel());
191  }
192  }
193  // FIXME: getMessage() sometimes returns and invalid string (null pointer inside QReport data member)
194  // edm::LogWarning ("tTrigCalibration") <<"-------- "<<theQReport->getMessage()<<" ------- "<<theQReport->getStatus();
195  }
196  }
197 
198  }
199 
200 }
T getUntrackedParameter(std::string const &, T const &) const
std::string getMEName(const DTSuperLayerId &slID)
Get the ME name.
int i
Definition: DBlmapReader.cc:9
void bookHistos(const DTChamberId &ch)
book the new ME
U second(std::pair< T, U > const &p)
std::map< int, MonitorElement * > wheelHistos
edm::ESHandle< DTTtrig > tTrigMap
int superLayer() const
Return the superlayer number.
int j
Definition: DBlmapReader.cc:9
std::map< uint32_t, MonitorElement * > histos
MonitorElement * get(const std::string &path) const
get ME from full pathname (e.g. &quot;my/long/dir/my_histo&quot;)
Definition: DQMStore.cc:1708
edm::ESHandle< DTGeometry > muonGeom
TH1F * getTH1F(void) const
std::pair< double, double > fitTimeBox(TH1F *hTimeBox)
Fit the rising edge of the time box returning mean value and sigma (first and second respectively) ...
string DTtTrigCalibrationTest::getMEName ( const DTSuperLayerId slID)
protected

Get the ME name.

Definition at line 213 of file DTtTrigCalibrationTest.cc.

References Parameters::parameters, DTChamberId::sector(), DTChamberId::station(), relativeConstraints::station, DTSuperLayerId::superlayer(), and DTChamberId::wheel().

213  {
214 
215  stringstream wheel; wheel << slID.wheel();
216  stringstream station; station << slID.station();
217  stringstream sector; sector << slID.sector();
218  stringstream superLayer; superLayer << slID.superlayer();
219 
220  string folderRoot = parameters.getUntrackedParameter<string>("folderRoot", "Collector/FU0/");
221  string folderTag = parameters.getUntrackedParameter<string>("folderTag", "TimeBoxes");
222  string folderName =
223  folderRoot + "DT/DTDigiTask/Wheel" + wheel.str() +
224  "/Station" + station.str() +
225  "/Sector" + sector.str() + "/" + folderTag + "/";
226 
227  string histoTag = parameters.getUntrackedParameter<string>("histoTag", "TimeBox");
228  string histoname = folderName + histoTag
229  + "_W" + wheel.str()
230  + "_St" + station.str()
231  + "_Sec" + sector.str()
232  + "_SL" + superLayer.str();
233 
234  return histoname;
235 
236 }
T getUntrackedParameter(std::string const &, T const &) const
int superlayer() const
Return the superlayer number (deprecated method name)
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

Member Data Documentation

DQMStore* DTtTrigCalibrationTest::dbe
private

Definition at line 88 of file DTtTrigCalibrationTest.h.

std::map< uint32_t , MonitorElement* > DTtTrigCalibrationTest::histos
private
edm::ESHandle<DTGeometry> DTtTrigCalibrationTest::muonGeom
private

Definition at line 91 of file DTtTrigCalibrationTest.h.

int DTtTrigCalibrationTest::nevents
private

Definition at line 82 of file DTtTrigCalibrationTest.h.

unsigned int DTtTrigCalibrationTest::nLumiSegs
private

Definition at line 83 of file DTtTrigCalibrationTest.h.

edm::ParameterSet DTtTrigCalibrationTest::parameters
private
int DTtTrigCalibrationTest::percentual
private

Definition at line 86 of file DTtTrigCalibrationTest.h.

int DTtTrigCalibrationTest::prescaleFactor
private

Definition at line 84 of file DTtTrigCalibrationTest.h.

int DTtTrigCalibrationTest::run
private
DTTimeBoxFitter* DTtTrigCalibrationTest::theFitter
private

Definition at line 94 of file DTtTrigCalibrationTest.h.

edm::ESHandle<DTTtrig> DTtTrigCalibrationTest::tTrigMap
private

Definition at line 92 of file DTtTrigCalibrationTest.h.

std::map< int, MonitorElement* > DTtTrigCalibrationTest::wheelHistos
private

Definition at line 100 of file DTtTrigCalibrationTest.h.