CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
L1TCaloLayer1Validator Class Reference

#include <L1Trigger/L1TCaloLayer1/plugins/L1TCaloLayer1Validator.cc>

Inheritance diagram for L1TCaloLayer1Validator:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 L1TCaloLayer1Validator (const edm::ParameterSet &)
 
 ~L1TCaloLayer1Validator ()
 
- 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
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Static Public Member Functions

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

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &) override
 
virtual void beginJob () override
 
virtual void endJob () override
 

Private Attributes

uint32_t badEventCount
 
uint32_t badNonZeroRegionCount
 
uint32_t badNonZeroTowerCount
 
uint32_t badRegionCount
 
uint32_t badTowerCount
 
edm::EDGetTokenT< L1CaloRegionCollectionemulRegionToken
 
edm::EDGetTokenT< CaloTowerBxCollectionemulTowerToken
 
uint32_t eventCount
 
uint32_t nbCard [18]
 
uint32_t nbRegion [22]
 
uint32_t ngCard [18]
 
uint32_t ngRegion [22]
 
uint32_t nonZeroRegionCount
 
uint32_t nonZeroTowerCount
 
uint32_t regionCount
 
uint32_t tEeTotET
 
uint32_t tErEmulTotET
 
edm::EDGetTokenT< L1CaloRegionCollectiontestRegionToken
 
edm::EDGetTokenT< CaloTowerBxCollectiontestTowerToken
 
uint32_t tGeTotET
 
uint32_t tGrEmulTotET
 
uint32_t tLeTotET
 
uint32_t tLrEmulTotET
 
uint32_t towerCount
 
bool validateRegions
 
bool validateTowers
 
bool verbose
 
uint32_t zbCard [18]
 
uint32_t zbRegion [22]
 
uint32_t zgCard [18]
 
uint32_t zgRegion [22]
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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)
 

Detailed Description

Description: This ED Analyzer compares output of CMS L1 Trigger Calo Layer-1 output (CaloTowers) from two sources

Implementation: It is expected that we compare CaloTowers from the spy source to that of the emulator. It can be used to compare any two CaloTower collections

Definition at line 47 of file L1TCaloLayer1Validator.cc.

Constructor & Destructor Documentation

L1TCaloLayer1Validator::L1TCaloLayer1Validator ( const edm::ParameterSet iConfig)
explicit

Definition at line 120 of file L1TCaloLayer1Validator.cc.

References EnergyCorrector::c, nbCard, nbRegion, ngCard, ngRegion, alignCSCRings::r, zbCard, zbRegion, zgCard, and zgRegion.

120  :
121  testTowerToken(consumes<CaloTowerBxCollection>(iConfig.getParameter<edm::InputTag>("testTowerToken"))),
122  emulTowerToken(consumes<CaloTowerBxCollection>(iConfig.getParameter<edm::InputTag>("emulTowerToken"))),
123  testRegionToken(consumes<L1CaloRegionCollection>(iConfig.getParameter<edm::InputTag>("testRegionToken"))),
124  emulRegionToken(consumes<L1CaloRegionCollection>(iConfig.getParameter<edm::InputTag>("emulRegionToken"))),
125  eventCount(0),
126  badEventCount(0),
127  towerCount(0),
128  badTowerCount(0),
131  regionCount(0),
132  badRegionCount(0),
135  tLrEmulTotET(0),
136  tErEmulTotET(0),
137  tGrEmulTotET(0),
138  tLeTotET(0),
139  tEeTotET(0),
140  tGeTotET(0),
141  validateTowers(iConfig.getParameter<bool>("validateTowers")),
142  validateRegions(iConfig.getParameter<bool>("validateRegions")),
143  verbose(iConfig.getParameter<bool>("verbose")) {
144  for(uint32_t r = 0; r < 22; r++) ngRegion[r] = nbRegion[r] = zgRegion[r] = zbRegion[r] = 0;
145  for(uint32_t c = 0; c < 18; c++) ngCard[c] = nbCard[c] = zgCard[c] = zbCard[c] = 0;
146 }
T getParameter(std::string const &) const
edm::EDGetTokenT< CaloTowerBxCollection > emulTowerToken
edm::EDGetTokenT< L1CaloRegionCollection > emulRegionToken
edm::EDGetTokenT< CaloTowerBxCollection > testTowerToken
edm::EDGetTokenT< L1CaloRegionCollection > testRegionToken
L1TCaloLayer1Validator::~L1TCaloLayer1Validator ( )

Definition at line 148 of file L1TCaloLayer1Validator.cc.

148 {}

Member Function Documentation

void L1TCaloLayer1Validator::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Definition at line 156 of file L1TCaloLayer1Validator.cc.

References funct::abs(), badEventCount, badNonZeroRegionCount, badNonZeroTowerCount, badRegionCount, badTowerCount, BXVector< T >::begin(), TauDecayModes::dec, emulRegionToken, emulTowerToken, BXVector< T >::end(), eventCount, g, edm::Event::getByToken(), LOG_ERROR, nbCard, nbRegion, ngCard, ngRegion, nonZeroRegionCount, nonZeroTowerCount, regionCount, summarizeEdmComparisonLogfiles::success, tEeTotET, tErEmulTotET, testRegionToken, testTowerToken, tGeTotET, tGrEmulTotET, tLeTotET, tLrEmulTotET, towerCount, validateRegions, validateTowers, zbCard, zbRegion, zgCard, and zgRegion.

157 {
158 
159  using namespace edm;
160  bool badEvent = false;
161  int theBX = 0;
162 
163  // Emulator calo towers and regions should always be available - get them
164  // Data will always contain calo regions, but not necessarily calo towers
165 
167  iEvent.getByToken(emulTowerToken, emulTowers);
169  iEvent.getByToken(testRegionToken, testRegions);
171  iEvent.getByToken(emulRegionToken, emulRegions);
172 
173  if(validateTowers) {
174  // Test towers will be available for spy and fat events only
176  iEvent.getByToken(testTowerToken, testTowers);
177  for(std::vector<CaloTower>::const_iterator testTower = testTowers->begin(theBX);
178  testTower != testTowers->end(theBX);
179  ++testTower) {
180  int test_iEta = testTower->hwEta();
181  int test_iPhi = testTower->hwPhi();
182  int test_et = testTower->hwPt();
183  int test_er = testTower->hwEtRatio();
184  int test_fb = testTower->hwQual();
185  for(std::vector<CaloTower>::const_iterator emulTower = emulTowers->begin(theBX);
186  emulTower != emulTowers->end(theBX);
187  ++emulTower) {
188  int emul_iEta = emulTower->hwEta();
189  int emul_iPhi = emulTower->hwPhi();
190  int emul_et = emulTower->hwPt();
191  int emul_er = emulTower->hwEtRatio();
192  int emul_fb = emulTower->hwQual();
193  bool success = true;
194  if(test_iEta == emul_iEta && test_iPhi == emul_iPhi) {
195  if(test_et != emul_et) {success = false;}
196  if(test_er != emul_er) {success = false;}
197  if(test_fb != emul_fb) {success = false;}
198  if(!success) {
199  if(test_et != emul_et) {if(verbose) LOG_ERROR << "ET ";}
200  if(test_er != emul_er) {if(verbose) LOG_ERROR << "ER ";}
201  if(test_fb != emul_fb) {if(verbose) LOG_ERROR << "FB ";}
202  if(verbose) LOG_ERROR << "Checks failed for tower ("
203  << std::dec
204  << test_iEta << ", "
205  << test_iPhi << ") : ("
206  << test_et << ", "
207  << test_er << ", "
208  << test_fb << ") != ("
209  << emul_et << ", "
210  << emul_er << ", "
211  << emul_fb << ")" << std::endl;
212  badEvent = true;
213  badTowerCount++;
214  if(test_et > 0) badNonZeroTowerCount++;
215  }
216  towerCount++;
217  if(test_et > 0) nonZeroTowerCount++;
218  }
219  if(!success && test_et == emul_et && test_iPhi == emul_iPhi) {
220  if(verbose) LOG_ERROR << "Incidental match for tower ("
221  << std::dec
222  << test_iEta << ", "
223  << test_iPhi << ") : ("
224  << test_et << ", "
225  << test_er << ", "
226  << test_fb << ") != ("
227  << emul_iEta <<","
228  << emul_iPhi<<") :("
229  << emul_et << ", "
230  << emul_er << ", "
231  << emul_fb << ")" << std::endl;
232  }
233  }
234  }
235  }
236 
237  // Region Validation
238 
239  if(validateRegions) {
240  UCTGeometry g;
241  uint32_t testRegionTotET = 0;
242  uint32_t emulRegionTotET = 0;
243  for(std::vector<L1CaloRegion>::const_iterator testRegion = testRegions->begin();
244  testRegion != testRegions->end();
245  ++testRegion) {
246  // uint16_t test_raw = testRegion->raw();
247  uint32_t test_et = testRegion->et();
248  testRegionTotET += test_et;
249  uint32_t test_rEta = testRegion->id().ieta();
250  uint32_t test_rPhi = testRegion->id().iphi();
251  // uint32_t test_iEta = (test_raw >> 12) & 0x3;
252  // uint32_t test_iPhi = (test_raw >> 14) & 0x3;
253  bool test_negativeEta = false;
254  int test_cEta = (test_rEta - 11) * 4 + 1;//test_iEta + 1;
255  if(test_rEta < 11) {
256  test_negativeEta = true;
257  test_cEta = -((10 - test_rEta) * 4 + 1);//test_iEta + 1);
258  }
259  int test_cPhi = test_rPhi * 4 + 1;//test_iPhi + 1;
260  uint32_t test_crate = g.getCrate(test_cEta, test_cPhi);
261  uint32_t test_card = g.getCard(test_cEta, test_cPhi);
262  uint32_t test_region = g.getRegion(test_cEta, test_cPhi);
263  for(std::vector<L1CaloRegion>::const_iterator emulRegion = emulRegions->begin();
264  emulRegion != emulRegions->end();
265  ++emulRegion) {
266  // uint16_t emul_raw = emulRegion->raw();
267  uint32_t emul_et = emulRegion->et();
268  if(testRegion == testRegions->begin()) emulRegionTotET += emul_et; // increment only once!
269  uint32_t emul_rEta = emulRegion->id().ieta();
270  uint32_t emul_rPhi = emulRegion->id().iphi();
271  // uint32_t emul_iEta = (emul_raw >> 12) & 0x3;
272  // uint32_t emul_iPhi = (emul_raw >> 14) & 0x3;
273  bool emul_negativeEta = false;
274  int emul_cEta = (emul_rEta - 11) * 4 + 1;//emul_iEta + 1;
275  if(emul_rEta < 11) {
276  emul_negativeEta = true;
277  emul_cEta = -((10 - emul_rEta) * 4 + 1);//emul_iEta + 1);
278  }
279  int emul_cPhi = emul_rPhi * 4 + 1;//emul_iPhi + 1;
280  uint32_t emul_crate = g.getCrate(emul_cEta, emul_cPhi);
281  uint32_t emul_card = g.getCard(emul_cEta, emul_cPhi);
282  uint32_t emul_region = g.getRegion(emul_cEta, emul_cPhi);
283  bool success = true;
284  if(test_rEta == emul_rEta && test_rPhi == emul_rPhi) {
285  if(test_et != emul_et) success = false;
286  //if(test_iEta != emul_iEta) success = false;
287  //if(test_iPhi != emul_iPhi) success = false;
288  if(!success) {
289  if(verbose) LOG_ERROR << "Checks failed for region ("
290  << std::dec
291  << test_rEta << ", "
292  << test_rPhi << ") ("
293  << test_negativeEta << ", "
294  << test_crate << ", "
295  << test_card << ", "
296  << test_region << ", "
297  // << test_iEta << ", "
298  // << test_iPhi << ", "
299  << test_et << ") != ("
300  << emul_negativeEta << ", "
301  << emul_crate << ", "
302  << emul_card << ", "
303  << emul_region << ", "
304  // << emul_iEta << ", "
305  // << emul_iPhi << ", "
306  << emul_et << ")"<< std::endl;
307  badEvent = true;
308  badRegionCount++;
309  if(test_et > 0) {
311  nbRegion[test_rEta]++;
312  nbCard[test_rPhi]++;
313  }
314  else {
315  zbRegion[test_rEta]++;
316  zbCard[test_rPhi]++;
317  }
318  }
319  else {
320  if(test_et > 0) {
321  ngRegion[test_rEta]++;
322  ngCard[test_rPhi]++;
323  if(verbose) LOG_ERROR << "Checks passed for region ("
324  << std::dec
325  << test_rEta << ", "
326  << test_rPhi << ") ("
327  << test_negativeEta << ", "
328  << test_crate << ", "
329  << test_card << ", "
330  << test_region << ", "
331  // << test_iEta << ", "
332  // << test_iPhi << ", "
333  << test_et << ") == ("
334  << emul_negativeEta << ", "
335  << emul_crate << ", "
336  << emul_card << ", "
337  << emul_region << ", "
338  // << emul_iEta << ", "
339  // << emul_iPhi << ", "
340  << emul_et << ")"<< std::endl;
341  }
342  else {
343  zgRegion[test_rEta]++;
344  zgCard[test_rPhi]++;
345  }
346  }
347  regionCount++;
348  if(test_et > 0) nonZeroRegionCount++;
349  }
350  if(!success && test_et == emul_et) {// && test_iPhi == emul_iPhi) {
351  if(verbose) LOG_ERROR << "Incidental match for region ("
352  << std::dec
353  << test_rEta << ", "
354  << test_rPhi << ", "
355  // << test_iEta << ", "
356  // << test_iPhi << ", "
357  << test_et << ") != ("
358  << emul_rEta << ", "
359  << emul_rPhi << ", "
360  // << emul_iEta << ", "
361  // << emul_iPhi << ", "
362  << emul_et << ")"<< std::endl;
363  }
364  }
365  }
366  uint32_t emulTowerTotET = 0;
367  for(std::vector<CaloTower>::const_iterator emulTower = emulTowers->begin(theBX);
368  emulTower != emulTowers->end(theBX);
369  ++emulTower) {
370  int twr_et = emulTower->hwPt();
371  int twr_cEta = emulTower->hwEta();
372  int twr_cPhi = emulTower->hwPhi();
373  uint32_t twr_region = g.getRegion(twr_cEta, twr_cPhi);
374  uint32_t twr_gEta = 10 - twr_region;
375  if(twr_cEta > 0) twr_gEta = twr_region + 11;
376  uint32_t twr_gPhi = g.getUCTRegionPhiIndex(twr_cPhi);
377  if(badEvent && twr_et > 0) {
378  if(verbose) LOG_ERROR << "Non-zero tower in region ("
379  << twr_gEta << ", "
380  << twr_gPhi << ") "
381  << "(cEta, cPhi, et) = ("
382  << twr_cEta << ", "
383  << twr_cPhi << ", "
384  << twr_et << ")"
385  << std::endl;
386  }
387  if(std::abs(twr_cEta) <= 28) emulTowerTotET += twr_et; // Exclude HF towers for now
388  }
389  // Increment counters for emulated total tower ET comparison with total region ET
390  if(emulTowerTotET < emulRegionTotET) tLrEmulTotET++;
391  else if(emulTowerTotET > emulRegionTotET) tGrEmulTotET++;
392  else tErEmulTotET++;
393  // Increment counters for emulated total region ET comparison with region test ET
394  if(testRegionTotET < emulRegionTotET) tLeTotET++;
395  else if(testRegionTotET > emulRegionTotET) tGeTotET++;
396  else tEeTotET++;
397  }
398 
399  // Event counters
400 
401  if(badEvent) badEventCount++;
402  eventCount++;
403 
404 }
const_iterator end(int bx) const
edm::EDGetTokenT< CaloTowerBxCollection > emulTowerToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:508
edm::EDGetTokenT< L1CaloRegionCollection > emulRegionToken
edm::EDGetTokenT< CaloTowerBxCollection > testTowerToken
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
edm::EDGetTokenT< L1CaloRegionCollection > testRegionToken
HLT enums.
const_iterator begin(int bx) const
#define LOG_ERROR
Definition: CSCDQM_Logger.h:41
void L1TCaloLayer1Validator::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 408 of file L1TCaloLayer1Validator.cc.

409 {
410 }
void L1TCaloLayer1Validator::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 414 of file L1TCaloLayer1Validator.cc.

References badEventCount, badNonZeroRegionCount, badNonZeroTowerCount, badRegionCount, badTowerCount, eventCount, LOG_ERROR, nbCard, nbRegion, ngCard, ngRegion, nonZeroRegionCount, nonZeroTowerCount, alignCSCRings::r, regionCount, tEeTotET, tErEmulTotET, tGeTotET, tGrEmulTotET, tLeTotET, tLrEmulTotET, towerCount, validateRegions, validateTowers, zbCard, zbRegion, zgCard, and zgRegion.

415 {
416  if(validateTowers)
417  LOG_ERROR << "L1TCaloLayer1Validator: Summary is Non-Zero Bad Tower / Bad Tower / Event Count = ("
418  << badNonZeroTowerCount << " of " << nonZeroTowerCount << ") / ("
419  << badTowerCount << " of " << towerCount << ") / ("
420  << badEventCount << " of " << eventCount << ")" << std::endl;
421  if(validateRegions) {
422  LOG_ERROR << "L1TCaloLayer1Validator: Summary is Non-Zero Bad Region / Bad Region / Event Count = ("
423  << badNonZeroRegionCount << " of " << nonZeroRegionCount << ") / ("
424  << badRegionCount << " of " << regionCount << ") / ("
425  << badEventCount << " of " << eventCount << ")" << std::endl;
426  LOG_ERROR << "L1TCaloLayer1Validator reTa, non-zero-good / non-zero-bad / zero-good / zero-bad region[rEta] = " << std::endl;
427  for(uint32_t r = 0; r < 22; r++)
428  LOG_ERROR << r << ", " << ngRegion[r] << " / " << nbRegion[r] << " / " << zgRegion[r] << " / " << zbRegion[r] << std::endl;
429  LOG_ERROR << "L1TCaloLayer1Validator rPhi, non-zero-good / non-zero-bad / zero-good / zero-bad region[rPhi] = " << std::endl;
430  for(uint32_t r = 0; r < 18; r++)
431  LOG_ERROR << r << ", " << ngCard[r] << " / " << nbCard[r] << " / " << zgCard[r] << " / " << zbCard[r] << std::endl;
432  LOG_ERROR << "L1TCaloLayer1Validator : Total ET emulator tower vs region; less / equal / greater counts: "
433  << tLrEmulTotET << " / " << tErEmulTotET << " / " << tGrEmulTotET << std::endl;
434  LOG_ERROR << "L1TCaloLayer1Validator : Total ET region test vs emulator; less / equal / greater counts: "
435  << tLeTotET << " / " << tEeTotET << " / " << tGeTotET << std::endl;
436  }
437 }
#define LOG_ERROR
Definition: CSCDQM_Logger.h:41
void L1TCaloLayer1Validator::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 473 of file L1TCaloLayer1Validator.cc.

References edm::ConfigurationDescriptions::addDefault(), DEFINE_FWK_MODULE, and edm::ParameterSetDescription::setUnknown().

473  {
474  //The following says we do not know what parameters are allowed so do no validation
475  // Please change this to state exactly what you do use, even if it is no parameters
477  desc.setUnknown();
478  descriptions.addDefault(desc);
479 }
void addDefault(ParameterSetDescription const &psetDescription)

Member Data Documentation

uint32_t L1TCaloLayer1Validator::badEventCount
private

Definition at line 74 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::badNonZeroRegionCount
private

Definition at line 82 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::badNonZeroTowerCount
private

Definition at line 78 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::badRegionCount
private

Definition at line 80 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::badTowerCount
private

Definition at line 76 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

edm::EDGetTokenT<L1CaloRegionCollection> L1TCaloLayer1Validator::emulRegionToken
private

Definition at line 71 of file L1TCaloLayer1Validator.cc.

Referenced by analyze().

edm::EDGetTokenT<CaloTowerBxCollection> L1TCaloLayer1Validator::emulTowerToken
private

Definition at line 68 of file L1TCaloLayer1Validator.cc.

Referenced by analyze().

uint32_t L1TCaloLayer1Validator::eventCount
private

Definition at line 73 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::nbCard[18]
private

Definition at line 90 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), endJob(), and L1TCaloLayer1Validator().

uint32_t L1TCaloLayer1Validator::nbRegion[22]
private

Definition at line 85 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), endJob(), and L1TCaloLayer1Validator().

uint32_t L1TCaloLayer1Validator::ngCard[18]
private

Definition at line 89 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), endJob(), and L1TCaloLayer1Validator().

uint32_t L1TCaloLayer1Validator::ngRegion[22]
private

Definition at line 84 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), endJob(), and L1TCaloLayer1Validator().

uint32_t L1TCaloLayer1Validator::nonZeroRegionCount
private

Definition at line 81 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::nonZeroTowerCount
private

Definition at line 77 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::regionCount
private

Definition at line 79 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::tEeTotET
private

Definition at line 99 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::tErEmulTotET
private

Definition at line 95 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

edm::EDGetTokenT<L1CaloRegionCollection> L1TCaloLayer1Validator::testRegionToken
private

Definition at line 70 of file L1TCaloLayer1Validator.cc.

Referenced by analyze().

edm::EDGetTokenT<CaloTowerBxCollection> L1TCaloLayer1Validator::testTowerToken
private

Definition at line 67 of file L1TCaloLayer1Validator.cc.

Referenced by analyze().

uint32_t L1TCaloLayer1Validator::tGeTotET
private

Definition at line 100 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::tGrEmulTotET
private

Definition at line 96 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::tLeTotET
private

Definition at line 98 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::tLrEmulTotET
private

Definition at line 94 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

uint32_t L1TCaloLayer1Validator::towerCount
private

Definition at line 75 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

bool L1TCaloLayer1Validator::validateRegions
private

Definition at line 103 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

bool L1TCaloLayer1Validator::validateTowers
private

Definition at line 102 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), and endJob().

bool L1TCaloLayer1Validator::verbose
private
uint32_t L1TCaloLayer1Validator::zbCard[18]
private

Definition at line 92 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), endJob(), and L1TCaloLayer1Validator().

uint32_t L1TCaloLayer1Validator::zbRegion[22]
private

Definition at line 87 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), endJob(), and L1TCaloLayer1Validator().

uint32_t L1TCaloLayer1Validator::zgCard[18]
private

Definition at line 91 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), endJob(), and L1TCaloLayer1Validator().

uint32_t L1TCaloLayer1Validator::zgRegion[22]
private

Definition at line 86 of file L1TCaloLayer1Validator.cc.

Referenced by analyze(), endJob(), and L1TCaloLayer1Validator().