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 Member Functions | Private Attributes | Friends
DTLocalTriggerLutTask Class Reference

#include <DTLocalTriggerLutTask.h>

Inheritance diagram for DTLocalTriggerLutTask:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 DTLocalTriggerLutTask (const edm::ParameterSet &ps)
 Constructor. More...
 
virtual ~DTLocalTriggerLutTask ()
 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 ()
 
void beginLuminosityBlock (const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &context)
 To reset the MEs. More...
 
void beginRun (const edm::Run &, const edm::EventSetup &)
 BeginRun. More...
 
void endJob (void)
 EndJob. More...
 
void searchDccBest (std::vector< L1MuDTChambPhDigi > const *trigs)
 Find best (highest qual) DCC trigger segments. 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 Member Functions

void bookHistos (DTChamberId chId)
 Book histos. More...
 
std::string & topFolder ()
 Get the top folder. More...
 

Private Attributes

std::string baseFolder
 
std::map< uint32_t, std::map
< std::string, MonitorElement * > > 
chHistos
 
DQMStoredbe
 
edm::EDGetTokenT
< L1MuDTChambPhContainer
dcc_Token_
 
bool detailedAnalysis
 
edm::ESHandle< DTGeometrymuonGeom
 
int nEvents
 
int nLumis
 
int nPhibBins
 
int nPhiBins
 
bool overUnderIn
 
edm::ParameterSet parameters
 
double rangePhi
 
double rangePhiB
 
edm::EDGetTokenT
< DTRecSegment4DCollection
seg_Token_
 
std::string theGeomLabel
 
bool track_ok [6][5][15]
 
const L1MuDTChambPhDigitrigBest [6][5][13]
 
DTTrigGeomUtilstrigGeomUtils
 
int trigQualBest [6][5][13]
 
std::map< int, std::map
< std::string, MonitorElement * > > 
whHistos
 

Friends

class DTMonitorModule
 

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 40 of file DTLocalTriggerLutTask.h.

Constructor & Destructor Documentation

DTLocalTriggerLutTask::DTLocalTriggerLutTask ( const edm::ParameterSet ps)

Constructor.

Definition at line 35 of file DTLocalTriggerLutTask.cc.

References baseFolder, dbe, dcc_Token_, detailedAnalysis, edm::ParameterSet::getUntrackedParameter(), LogTrace, nPhibBins, nPhiBins, cppFunctionSkipper::operator, overUnderIn, parameters, rangePhi, rangePhiB, seg_Token_, and theGeomLabel.

35  : trigGeomUtils(0) {
36 
37  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerLutTask") << "[DTLocalTriggerLutTask]: Constructor"<<endl;
38 
39  dcc_Token_ = consumes<L1MuDTChambPhContainer>(
40  ps.getUntrackedParameter<InputTag>("inputTagDCC"));
41  seg_Token_ = consumes<DTRecSegment4DCollection>(
42  ps.getUntrackedParameter<InputTag>("inputTagSEG"));
43 
44  overUnderIn = ps.getUntrackedParameter<bool>("rebinOutFlowsInGraph");
45  detailedAnalysis = ps.getUntrackedParameter<bool>("detailedAnalysis");
46  theGeomLabel = ps.getUntrackedParameter<string>("geomLabel");
47 
48  if (detailedAnalysis){
49  nPhiBins = 401;
50  rangePhi = 10.025;
51  nPhibBins = 401;
52  rangePhiB = 10.025;
53  } else {
54  nPhiBins = 51;
55  rangePhi = 5.1;
56  nPhibBins = 51;
57  rangePhiB = 10.2;
58  }
59 
60  baseFolder = "DT/03-LocalTrigger-DCC/";
61  parameters = ps;
63 
64 }
T getUntrackedParameter(std::string const &, T const &) const
edm::ParameterSet parameters
edm::EDGetTokenT< DTRecSegment4DCollection > seg_Token_
edm::EDGetTokenT< L1MuDTChambPhContainer > dcc_Token_
#define LogTrace(id)
DTTrigGeomUtils * trigGeomUtils
DTLocalTriggerLutTask::~DTLocalTriggerLutTask ( )
virtual

Destructor.

Definition at line 67 of file DTLocalTriggerLutTask.cc.

References LogTrace, nEvents, and trigGeomUtils.

67  {
68 
69  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerLutTask") << "[DTLocalTriggerLutTask]: analyzed " << nEvents << " events" << endl;
70  if (trigGeomUtils) { delete trigGeomUtils; }
71 
72 }
#define LogTrace(id)
DTTrigGeomUtils * trigGeomUtils

Member Function Documentation

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

Analyze.

Implements edm::EDAnalyzer.

Definition at line 165 of file DTLocalTriggerLutTask.cc.

References chHistos, DTTrigGeomUtils::computeSCCoordinates(), dcc_Token_, detailedAnalysis, edm::Event::getByToken(), bookConverter::max, min(), nEvents, overUnderIn, rangePhi, rangePhiB, DetId::rawId(), searchDccBest(), seg_Token_, DTChamberId::station(), relativeConstraints::station, trigBest, DTTrigGeomUtils::trigDir(), trigGeomUtils, DTTrigGeomUtils::trigPos(), trigQualBest, DTTrigGeomUtils::trigToSeg(), and DTChamberId::wheel().

165  {
166 
167  nEvents++;
168 
170  e.getByToken(dcc_Token_, trigHandle);
171  vector<L1MuDTChambPhDigi> const* trigs = trigHandle->getContainer();
172  searchDccBest(trigs);
173 
175  e.getByToken(seg_Token_, segments4D);
176  DTRecSegment4DCollection::id_iterator chamberId;
177 
178  // Preliminary loop finds best 4D Segment and high quality ones
179  vector<const DTRecSegment4D*> best4DSegments;
180 
181  for (chamberId = segments4D->id_begin(); chamberId != segments4D->id_end(); ++chamberId){
182 
183  DTRecSegment4DCollection::range rangeInCh = segments4D->get(*chamberId);
184  DTRecSegment4DCollection::const_iterator trackIt = rangeInCh.first;
185  DTRecSegment4DCollection::const_iterator trackEnd = rangeInCh.second;
186 
187  const DTRecSegment4D* tmpBest = 0;
188  int tmpdof = 0;
189  int dof = 0;
190 
191  for (; trackIt!=trackEnd; ++trackIt){
192 
193  if(trackIt->hasPhi()) {
194  dof = trackIt->phiSegment()->degreesOfFreedom();
195  if (dof>tmpdof) {
196  tmpBest = &(*trackIt);
197  tmpdof = dof;
198  }
199  }
200 
201  }
202 
203  if (tmpBest) best4DSegments.push_back(tmpBest);
204 
205  }
206 
207  vector<const DTRecSegment4D*>::const_iterator bestTrackIt = best4DSegments.begin();
208  vector<const DTRecSegment4D*>::const_iterator bestTrackEnd = best4DSegments.end();
209 
210  for (; bestTrackIt!=bestTrackEnd; ++bestTrackIt) {
211 
212  if((*bestTrackIt)->hasPhi()) {
213 
214  DTChamberId chId = (*bestTrackIt)->chamberId();
215  int nHitsPhi = (*bestTrackIt)->phiSegment()->degreesOfFreedom()+2;
216 
217  int wheel = chId.wheel();
218  int station = chId.station();
219  int scsector = 0;
220  float trackPosPhi, trackPosEta, trackDirPhi, trackDirEta;
221  trigGeomUtils->computeSCCoordinates((*bestTrackIt),scsector,trackPosPhi,trackDirPhi,trackPosEta,trackDirEta);
222 
223  map<string, MonitorElement*> &chMap = chHistos[chId.rawId()];
224 
225  if (trigQualBest[wheel+3][station][scsector] > 3 && // residuals only for correlate triggers
226  trigQualBest[wheel+3][station][scsector] < 7 &&
227  nHitsPhi>=7 ) {
228 
229  float trigPos = trigGeomUtils->trigPos(trigBest[wheel+3][station][scsector]);
230  float trigDir = trigGeomUtils->trigDir(trigBest[wheel+3][station][scsector]);
231  trigGeomUtils->trigToSeg(station,trigPos,trackDirPhi);
232 
233  double deltaPos = trigPos-trackPosPhi;
234  deltaPos = overUnderIn ? max(min(deltaPos,rangePhi-0.01),-rangePhi+0.01) : deltaPos;
235  double deltaDir = trigDir-trackDirPhi;
236  deltaDir = overUnderIn ? max(min(deltaDir,rangePhiB-0.01),-rangePhiB+0.01) : deltaDir;
237  chMap.find("DCC_PhiResidual")->second->Fill(deltaPos);
238  chMap.find("DCC_PhibResidual")->second->Fill(deltaDir);
239 
240  if (detailedAnalysis){
241  chMap.find("DCC_PhitkvsPhitrig")->second->Fill(trigPos,trackPosPhi);
242  chMap.find("DCC_PhibtkvsPhibtrig")->second->Fill(trigDir,trackDirPhi);
243  chMap.find("DCC_PhibResidualvsTkPos")->second->Fill(trackPosPhi,trigDir-trackDirPhi);
244  chMap.find("DCC_PhiResidualvsTkPos")->second->Fill(trackPosPhi,trigPos-trackPosPhi);
245  }
246  }
247  }
248  }
249 }
std::pair< const_iterator, const_iterator > range
iterator range
Definition: RangeMap.h:50
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:446
float trigDir(const L1MuDTChambPhDigi *trig)
Return local direction (trigger RF) for a given trigger primitive.
edm::EDGetTokenT< DTRecSegment4DCollection > seg_Token_
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
edm::EDGetTokenT< L1MuDTChambPhContainer > dcc_Token_
void trigToSeg(int st, float &x, float dir)
Compute Trigger x coordinate in chamber RF.
T min(T a, T b)
Definition: MathUtil.h:58
std::map< uint32_t, std::map< std::string, MonitorElement * > > chHistos
DTTrigGeomUtils * trigGeomUtils
const L1MuDTChambPhDigi * trigBest[6][5][13]
float trigPos(const L1MuDTChambPhDigi *trig)
Return local position (trigger RF) for a given trigger primitive.
int station() const
Return the station number.
Definition: DTChamberId.h:51
int wheel() const
Return the wheel number.
Definition: DTChamberId.h:45
void computeSCCoordinates(const DTRecSegment4D *track, int &scsec, float &x, float &xdir, float &y, float &ydir)
Compute track coordinates with SC sector numbering.
void searchDccBest(std::vector< L1MuDTChambPhDigi > const *trigs)
Find best (highest qual) DCC trigger segments.
void DTLocalTriggerLutTask::beginJob ( void  )
protectedvirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 75 of file DTLocalTriggerLutTask.cc.

References LogTrace, nEvents, and nLumis.

75  {
76 
77  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerLutTask") << "[DTLocalTriggerLutTask]: BeginJob" << endl;
78  nEvents = 0;
79  nLumis = 0;
80 
81 }
#define LogTrace(id)
void DTLocalTriggerLutTask::beginLuminosityBlock ( const edm::LuminosityBlock lumiSeg,
const edm::EventSetup context 
)
protectedvirtual

To reset the MEs.

Reimplemented from edm::EDAnalyzer.

Definition at line 133 of file DTLocalTriggerLutTask.cc.

References chHistos, edm::ParameterSet::getUntrackedParameter(), LogTrace, nLumis, and parameters.

133  {
134 
135  nLumis++;
136  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerLutTask") << "[DTLocalTriggerLutTask]: Begin of LS transition" << endl;
137 
138  if(nLumis%parameters.getUntrackedParameter<int>("ResetCycle") == 0) {
139 
140  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerLutTask") << "[DTLocalTriggerLutTask]: Cleaning histos" << endl;
141  map<uint32_t, map<string, MonitorElement*> > ::const_iterator chambIt = chHistos.begin();
142  map<uint32_t, map<string, MonitorElement*> > ::const_iterator chambEnd = chHistos.end();
143 
144  for(; chambIt!=chambEnd; ++chambIt) {
145  map<string, MonitorElement*> ::const_iterator histoIt = chambIt->second.begin();
146  map<string, MonitorElement*> ::const_iterator histoEnd = chambIt->second.end();
147  for(; histoIt!=histoEnd; ++ histoIt) {
148  histoIt->second->Reset();
149  }
150  }
151 
152  }
153 
154 }
T getUntrackedParameter(std::string const &, T const &) const
edm::ParameterSet parameters
#define LogTrace(id)
std::map< uint32_t, std::map< std::string, MonitorElement * > > chHistos
void DTLocalTriggerLutTask::beginRun ( const edm::Run run,
const edm::EventSetup context 
)
protectedvirtual

BeginRun.

Reimplemented from edm::EDAnalyzer.

Definition at line 117 of file DTLocalTriggerLutTask.cc.

References bookHistos(), edm::EventSetup::get(), LogTrace, muonGeom, theGeomLabel, and trigGeomUtils.

117  {
118 
119  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerLutTask") << "[DTLocalTriggerLutTask]: BeginRun" << endl;
120 
123 
124  std::vector<const DTChamber*>::const_iterator chambIt = muonGeom->chambers().begin();
125  std::vector<const DTChamber*>::const_iterator chambEnd = muonGeom->chambers().end();
126 
127  for (; chambIt!=chambEnd; ++chambIt)
128  bookHistos((*chambIt)->id());
129 
130 }
edm::ESHandle< DTGeometry > muonGeom
#define LogTrace(id)
DTTrigGeomUtils * trigGeomUtils
const T & get() const
Definition: EventSetup.h:55
void bookHistos(DTChamberId chId)
Book histos.
void DTLocalTriggerLutTask::bookHistos ( DTChamberId  chId)
private

Book histos.

Definition at line 83 of file DTLocalTriggerLutTask.cc.

References chHistos, dbe, detailedAnalysis, nPhibBins, nPhiBins, rangePhi, rangePhiB, DetId::rawId(), DTChamberId::sector(), DTChamberId::station(), relativeConstraints::station, topFolder(), and DTChamberId::wheel().

Referenced by beginRun().

83  {
84 
85  stringstream wheel; wheel << chId.wheel();
86  stringstream sector; sector << chId.sector();
87  stringstream station; station << chId.station();
88 
89  dbe->setCurrentFolder(topFolder() + "Wheel" + wheel.str() + "/Sector" + sector.str() +
90  "/Station" + station.str() + "/Segment");
91 
92  string chTag = "_W" + wheel.str() + "_Sec" + sector.str() + "_St" + station.str();
93  std::map<std::string, MonitorElement*> &chambMap = chHistos[chId.rawId()];
94 
95  string hName = "DCC_PhiResidual";
96  chambMap[hName] = dbe->book1D(hName+chTag,"Trigger local position - Segment local position (correlated triggers)",nPhiBins,-rangePhi,rangePhi);
97  hName = "DCC_PhibResidual";
98  chambMap[hName] =dbe->book1D(hName+chTag,"Trigger local direction - Segment local direction (correlated triggers)",nPhibBins,-rangePhiB,rangePhiB);
99 
100  if (detailedAnalysis) {
101 
102  hName = "DCC_PhitkvsPhitrig";
103  chambMap[hName] = dbe->book2D(hName+chTag,"Local position: segment vs trigger",100,-500.,500.,100,-500.,500.);
104  hName = "DCC_PhibtkvsPhibtrig";
105  chambMap[hName] =dbe->book2D(hName+chTag,"Local direction : segment vs trigger",200,-40.,40.,200,-40.,40.);
106  hName = "DCC_PhibResidualvsTkPos";
107  chambMap[hName] =dbe->book2D(hName+chTag,"Local direction residual vs Segment Position",100,-500.,500.,200,-10.,10.);
108  hName = "DCC_PhiResidualvsTkPos";
109  chambMap[hName] =dbe->book2D(hName+chTag,"Local Position residual vs Segment Position",100,-500.,500.,200,-10.,10.);
110 
111  }
112 
113 }
std::string & topFolder()
Get the top folder.
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
std::map< uint32_t, std::map< std::string, MonitorElement * > > chHistos
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 DTLocalTriggerLutTask::endJob ( void  )
protectedvirtual

EndJob.

Reimplemented from edm::EDAnalyzer.

Definition at line 157 of file DTLocalTriggerLutTask.cc.

References dbe, nEvents, and topFolder().

157  {
158 
159  LogVerbatim("DTDQM|DTMonitorModule|DTLocalTriggerLutTask") << "[DTLocalTriggerLutTask]: analyzed " << nEvents << " events" << endl;
160  dbe->rmdir(topFolder());
161 
162 }
std::string & topFolder()
Get the top folder.
void DTLocalTriggerLutTask::searchDccBest ( std::vector< L1MuDTChambPhDigi > const *  trigs)
protected

Find best (highest qual) DCC trigger segments.

Definition at line 251 of file DTLocalTriggerLutTask.cc.

References trigBest, and trigQualBest.

Referenced by analyze().

251  {
252 
253  string histoType ;
254  string histoTag ;
255 
256  // define best quality trigger segment
257  // start from 1 and zero is kept empty
258  for (int st=0;st<=4;++st)
259  for (int wh=0;wh<=5;++wh)
260  for (int sec=0;sec<=12;++sec)
261  trigQualBest[wh][st][sec] = -1;
262 
263  vector<L1MuDTChambPhDigi>::const_iterator trigIt = trigs->begin();
264  vector<L1MuDTChambPhDigi>::const_iterator trigEnd = trigs->end();
265  for(; trigIt!=trigEnd; ++trigIt) {
266 
267  int wh = trigIt->whNum();
268  int sec = trigIt->scNum() + 1; // DTTF -> DT sector range transform
269  int st = trigIt->stNum();
270  int qual = trigIt->code();
271 
272  if(qual>trigQualBest[wh+3][st][sec] && qual<7) {
273  trigQualBest[wh+3][st][sec]=qual;
274  trigBest[wh+3][st][sec] = &(*trigIt);
275  }
276 
277  }
278 }
const L1MuDTChambPhDigi * trigBest[6][5][13]
std::string& DTLocalTriggerLutTask::topFolder ( )
inlineprivate

Get the top folder.

Definition at line 75 of file DTLocalTriggerLutTask.h.

References baseFolder.

Referenced by bookHistos(), and endJob().

75 { return baseFolder; }

Friends And Related Function Documentation

friend class DTMonitorModule
friend

Definition at line 42 of file DTLocalTriggerLutTask.h.

Member Data Documentation

std::string DTLocalTriggerLutTask::baseFolder
private

Definition at line 87 of file DTLocalTriggerLutTask.h.

Referenced by DTLocalTriggerLutTask(), and topFolder().

std::map<uint32_t, std::map<std::string, MonitorElement*> > DTLocalTriggerLutTask::chHistos
private

Definition at line 104 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), beginLuminosityBlock(), and bookHistos().

DQMStore* DTLocalTriggerLutTask::dbe
private

Definition at line 98 of file DTLocalTriggerLutTask.h.

Referenced by bookHistos(), DTLocalTriggerLutTask(), and endJob().

edm::EDGetTokenT<L1MuDTChambPhContainer> DTLocalTriggerLutTask::dcc_Token_
private

Definition at line 91 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), and DTLocalTriggerLutTask().

bool DTLocalTriggerLutTask::detailedAnalysis
private

Definition at line 88 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), bookHistos(), and DTLocalTriggerLutTask().

edm::ESHandle<DTGeometry> DTLocalTriggerLutTask::muonGeom
private

Definition at line 100 of file DTLocalTriggerLutTask.h.

Referenced by beginRun().

int DTLocalTriggerLutTask::nEvents
private
int DTLocalTriggerLutTask::nLumis
private

Definition at line 83 of file DTLocalTriggerLutTask.h.

Referenced by beginJob(), and beginLuminosityBlock().

int DTLocalTriggerLutTask::nPhibBins
private

Definition at line 84 of file DTLocalTriggerLutTask.h.

Referenced by bookHistos(), and DTLocalTriggerLutTask().

int DTLocalTriggerLutTask::nPhiBins
private

Definition at line 84 of file DTLocalTriggerLutTask.h.

Referenced by bookHistos(), and DTLocalTriggerLutTask().

bool DTLocalTriggerLutTask::overUnderIn
private

Definition at line 89 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), and DTLocalTriggerLutTask().

edm::ParameterSet DTLocalTriggerLutTask::parameters
private
double DTLocalTriggerLutTask::rangePhi
private

Definition at line 85 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), bookHistos(), and DTLocalTriggerLutTask().

double DTLocalTriggerLutTask::rangePhiB
private

Definition at line 85 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), bookHistos(), and DTLocalTriggerLutTask().

edm::EDGetTokenT<DTRecSegment4DCollection> DTLocalTriggerLutTask::seg_Token_
private

Definition at line 92 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), and DTLocalTriggerLutTask().

std::string DTLocalTriggerLutTask::theGeomLabel
private

Definition at line 101 of file DTLocalTriggerLutTask.h.

Referenced by beginRun(), and DTLocalTriggerLutTask().

bool DTLocalTriggerLutTask::track_ok[6][5][15]
private

Definition at line 96 of file DTLocalTriggerLutTask.h.

const L1MuDTChambPhDigi* DTLocalTriggerLutTask::trigBest[6][5][13]
private

Definition at line 95 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), and searchDccBest().

DTTrigGeomUtils* DTLocalTriggerLutTask::trigGeomUtils
private

Definition at line 102 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), beginRun(), and ~DTLocalTriggerLutTask().

int DTLocalTriggerLutTask::trigQualBest[6][5][13]
private

Definition at line 94 of file DTLocalTriggerLutTask.h.

Referenced by analyze(), and searchDccBest().

std::map<int, std::map<std::string, MonitorElement*> > DTLocalTriggerLutTask::whHistos
private

Definition at line 105 of file DTLocalTriggerLutTask.h.