CMS 3D CMS Logo

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

#include <EcalEBTrigPrimProducer.h>

Inheritance diagram for EcalEBTrigPrimProducer:
edm::stream::EDProducer<>

Public Member Functions

void beginRun (const edm::Run &run, const edm::EventSetup &es) override
 
 EcalEBTrigPrimProducer (const edm::ParameterSet &conf)
 
void endRun (const edm::Run &, const edm::EventSetup &) override
 
void produce (edm::Event &e, const edm::EventSetup &c) override
 
 ~EcalEBTrigPrimProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Private Member Functions

unsigned long long getRecords (edm::EventSetup const &setup)
 

Private Attributes

std::unique_ptr< EcalEBTrigPrimTestAlgoalgo_
 
bool barrelOnly_
 
int binOfMaximum_
 
unsigned long long cacheID_
 
bool debug_
 
edm::ESGetToken< EcalTrigTowerConstituentsMap, IdealGeometryRecordeTTmapToken_
 
bool famos_
 
bool fillBinOfMaximumFromHistory_
 
int nEvent_
 
int nSamples_
 
bool tcpFormat_
 
edm::ESGetToken< EcalTPGCrystalStatus, EcalTPGCrystalStatusRcdtheEcalTPGCrystalStatus_Token_
 
edm::ESGetToken< EcalTPGLinearizationConst, EcalTPGLinearizationConstRcdtheEcalTPGLinearization_Token_
 
edm::ESGetToken< EcalTPGLutGroup, EcalTPGLutGroupRcdtheEcalTPGLutGroup_Token_
 
edm::ESGetToken< EcalTPGLutIdMap, EcalTPGLutIdMapRcdtheEcalTPGLutIdMap_Token_
 
edm::ESGetToken< EcalTPGPedestals, EcalTPGPedestalsRcdtheEcalTPGPedestals_Token_
 
edm::ESGetToken< EcalTPGSlidingWindow, EcalTPGSlidingWindowRcdtheEcalTPGSlidingWindow_Token_
 
edm::ESGetToken< EcalTPGSpike, EcalTPGSpikeRcdtheEcalTPGSpike_Token_
 
edm::ESGetToken< EcalTPGTowerStatus, EcalTPGTowerStatusRcdtheEcalTPGTowerStatus_Token_
 
edm::ESGetToken< EcalTPGWeightGroup, EcalTPGWeightGroupRcdtheEcalTPGWEightGroup_Token_
 
edm::ESGetToken< EcalTPGWeightIdMap, EcalTPGWeightIdMapRcdtheEcalTPGWEightIdMap_Token_
 
edm::ESGetToken< CaloGeometry, CaloGeometryRecordtheGeometryToken_
 
edm::EDGetTokenT< EBDigiCollectiontokenEBdigi_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

For Phase II EcalEBTrigPrimProducer produces a EcalEBTrigPrimDigiCollection out of PhaseI Digis. This is a simple starting point to fill in the chain for Phase II

For Phase II

Definition at line 48 of file EcalEBTrigPrimProducer.h.

Constructor & Destructor Documentation

◆ EcalEBTrigPrimProducer()

EcalEBTrigPrimProducer::EcalEBTrigPrimProducer ( const edm::ParameterSet conf)
explicit

Definition at line 47 of file EcalEBTrigPrimProducer.cc.

48  : barrelOnly_(iConfig.getParameter<bool>("BarrelOnly")),
49  tcpFormat_(iConfig.getParameter<bool>("TcpOutput")),
50  debug_(iConfig.getParameter<bool>("Debug")),
51  famos_(iConfig.getParameter<bool>("Famos")),
52  nSamples_(iConfig.getParameter<int>("nOfSamples")),
53  binOfMaximum_(iConfig.getParameter<int>("binOfMaximum")) {
54  tokenEBdigi_ = consumes<EBDigiCollection>(iConfig.getParameter<edm::InputTag>("barrelEcalDigis"));
56  esConsumes<EcalTPGLinearizationConst, EcalTPGLinearizationConstRcd, edm::Transition::BeginRun>();
57  theEcalTPGPedestals_Token_ = esConsumes<EcalTPGPedestals, EcalTPGPedestalsRcd, edm::Transition::BeginRun>();
59  esConsumes<EcalTPGCrystalStatus, EcalTPGCrystalStatusRcd, edm::Transition::BeginRun>();
60  theEcalTPGWEightIdMap_Token_ = esConsumes<EcalTPGWeightIdMap, EcalTPGWeightIdMapRcd, edm::Transition::BeginRun>();
61  theEcalTPGWEightGroup_Token_ = esConsumes<EcalTPGWeightGroup, EcalTPGWeightGroupRcd, edm::Transition::BeginRun>();
63  esConsumes<EcalTPGSlidingWindow, EcalTPGSlidingWindowRcd, edm::Transition::BeginRun>();
64  theEcalTPGLutGroup_Token_ = esConsumes<EcalTPGLutGroup, EcalTPGLutGroupRcd, edm::Transition::BeginRun>();
65  theEcalTPGLutIdMap_Token_ = esConsumes<EcalTPGLutIdMap, EcalTPGLutIdMapRcd, edm::Transition::BeginRun>();
66  theEcalTPGTowerStatus_Token_ = esConsumes<EcalTPGTowerStatus, EcalTPGTowerStatusRcd, edm::Transition::BeginRun>();
67  theEcalTPGSpike_Token_ = esConsumes<EcalTPGSpike, EcalTPGSpikeRcd, edm::Transition::BeginRun>();
68  //register your products
69  produces<EcalEBTrigPrimDigiCollection>();
70  if (tcpFormat_)
71  produces<EcalEBTrigPrimDigiCollection>("formatTCP");
72  if (not barrelOnly_) {
73  eTTmapToken_ = esConsumes<edm::Transition::BeginRun>();
74  theGeometryToken_ = esConsumes<edm::Transition::BeginRun>();
75  }
76 }

References barrelOnly_, eTTmapToken_, edm::ParameterSet::getParameter(), tcpFormat_, theEcalTPGCrystalStatus_Token_, theEcalTPGLinearization_Token_, theEcalTPGLutGroup_Token_, theEcalTPGLutIdMap_Token_, theEcalTPGPedestals_Token_, theEcalTPGSlidingWindow_Token_, theEcalTPGSpike_Token_, theEcalTPGTowerStatus_Token_, theEcalTPGWEightGroup_Token_, theEcalTPGWEightIdMap_Token_, theGeometryToken_, and tokenEBdigi_.

◆ ~EcalEBTrigPrimProducer()

EcalEBTrigPrimProducer::~EcalEBTrigPrimProducer ( )
override

Definition at line 145 of file EcalEBTrigPrimProducer.cc.

145 {}

Member Function Documentation

◆ beginRun()

void EcalEBTrigPrimProducer::beginRun ( const edm::Run run,
const edm::EventSetup es 
)
override

Definition at line 78 of file EcalEBTrigPrimProducer.cc.

78  {
79  //ProcessHistory is guaranteed to be constant for an entire Run
80  //binOfMaximum_ = findBinOfMaximum(fillBinOfMaximumFromHistory_,binOfMaximum_,run.processHistory());
81 
82  if (barrelOnly_) {
83  algo_ = std::make_unique<EcalEBTrigPrimTestAlgo>(nSamples_, binOfMaximum_, tcpFormat_, debug_, famos_);
84  } else {
85  auto const& theGeometry = setup.getData(theGeometryToken_);
86  auto const& eTTmap = setup.getData(eTTmapToken_);
87  algo_ = std::make_unique<EcalEBTrigPrimTestAlgo>(
88  &eTTmap, &theGeometry, nSamples_, binOfMaximum_, tcpFormat_, debug_, famos_);
89  }
90  // get a first version of the records
91  cacheID_ = this->getRecords(setup);
92  nEvent_ = 0;
93 }

References algo_, barrelOnly_, binOfMaximum_, cacheID_, debug_, eTTmapToken_, famos_, getRecords(), nEvent_, nSamples_, singleTopDQM_cfi::setup, tcpFormat_, and theGeometryToken_.

◆ endRun()

void EcalEBTrigPrimProducer::endRun ( const edm::Run run,
const edm::EventSetup setup 
)
override

Definition at line 143 of file EcalEBTrigPrimProducer.cc.

143 { algo_.reset(); }

References algo_.

◆ getRecords()

unsigned long long EcalEBTrigPrimProducer::getRecords ( edm::EventSetup const &  setup)
private

Definition at line 95 of file EcalEBTrigPrimProducer.cc.

95  {
96  // get parameter records for xtals
97  auto theEcalTPGLinearization_handle = setup.getHandle(theEcalTPGLinearization_Token_);
98  const EcalTPGLinearizationConst* ecaltpLin = theEcalTPGLinearization_handle.product();
99  //
100  edm::ESHandle<EcalTPGPedestals> theEcalTPGPedestals_handle = setup.getHandle(theEcalTPGPedestals_Token_);
101  const EcalTPGPedestals* ecaltpPed = theEcalTPGPedestals_handle.product();
102  //
103  edm::ESHandle<EcalTPGCrystalStatus> theEcalTPGCrystalStatus_handle = setup.getHandle(theEcalTPGCrystalStatus_Token_);
104  const EcalTPGCrystalStatus* ecaltpgBadX = theEcalTPGCrystalStatus_handle.product();
105  //
106  //for strips
107  //
108  edm::ESHandle<EcalTPGWeightIdMap> theEcalTPGWEightIdMap_handle = setup.getHandle(theEcalTPGWEightIdMap_Token_);
109  const EcalTPGWeightIdMap* ecaltpgWeightMap = theEcalTPGWEightIdMap_handle.product();
110  //
111  edm::ESHandle<EcalTPGWeightGroup> theEcalTPGWEightGroup_handle = setup.getHandle(theEcalTPGWEightGroup_Token_);
112  const EcalTPGWeightGroup* ecaltpgWeightGroup = theEcalTPGWEightGroup_handle.product();
113  //
114  edm::ESHandle<EcalTPGSlidingWindow> theEcalTPGSlidingWindow_handle = setup.getHandle(theEcalTPGSlidingWindow_Token_);
115  const EcalTPGSlidingWindow* ecaltpgSlidW = theEcalTPGSlidingWindow_handle.product();
116  // TCP
117  edm::ESHandle<EcalTPGLutGroup> theEcalTPGLutGroup_handle = setup.getHandle(theEcalTPGLutGroup_Token_);
118  const EcalTPGLutGroup* ecaltpgLutGroup = theEcalTPGLutGroup_handle.product();
119  //
120  edm::ESHandle<EcalTPGLutIdMap> theEcalTPGLutIdMap_handle = setup.getHandle(theEcalTPGLutIdMap_Token_);
121  const EcalTPGLutIdMap* ecaltpgLut = theEcalTPGLutIdMap_handle.product();
122  //
123  edm::ESHandle<EcalTPGTowerStatus> theEcalTPGTowerStatus_handle = setup.getHandle(theEcalTPGTowerStatus_Token_);
124  const EcalTPGTowerStatus* ecaltpgBadTT = theEcalTPGTowerStatus_handle.product();
125  //
126  edm::ESHandle<EcalTPGSpike> theEcalTPGSpike_handle = setup.getHandle(theEcalTPGSpike_Token_);
127  const EcalTPGSpike* ecaltpgSpike = theEcalTPGSpike_handle.product();
128 
130  algo_->setPointers(ecaltpLin,
131  ecaltpPed,
132  ecaltpgBadX,
133  ecaltpgWeightMap,
134  ecaltpgWeightGroup,
135  ecaltpgSlidW,
136  ecaltpgLutGroup,
137  ecaltpgLut,
138  ecaltpgBadTT,
139  ecaltpgSpike);
140  return setup.get<EcalTPGLinearizationConstRcd>().cacheIdentifier();
141 }

References algo_, edm::ESHandle< T >::product(), singleTopDQM_cfi::setup, theEcalTPGCrystalStatus_Token_, theEcalTPGLinearization_Token_, theEcalTPGLutGroup_Token_, theEcalTPGLutIdMap_Token_, theEcalTPGPedestals_Token_, theEcalTPGSlidingWindow_Token_, theEcalTPGSpike_Token_, theEcalTPGTowerStatus_Token_, theEcalTPGWEightGroup_Token_, and theEcalTPGWEightIdMap_Token_.

Referenced by beginRun().

◆ produce()

void EcalEBTrigPrimProducer::produce ( edm::Event e,
const edm::EventSetup c 
)
override

Definition at line 148 of file EcalEBTrigPrimProducer.cc.

148  {
149  nEvent_++;
150 
151  // get input collections
152  edm::Handle<EBDigiCollection> barrelDigiHandle;
153 
154  if (!e.getByToken(tokenEBdigi_, barrelDigiHandle)) {
156  labelsForToken(tokenEBdigi_, labels);
157  edm::LogWarning("EcalTPG") << " Couldnt find Barrel digis " << labels.module << " and label "
158  << labels.productInstance << "!!!";
159  }
160 
161  if (debug_)
162  std::cout << "EcalTPG"
163  << " =================> Treating event " << nEvent_ << ", Number of EB digis "
164  << barrelDigiHandle.product()->size() << std::endl;
165 
166  auto pOut = std::make_unique<EcalEBTrigPrimDigiCollection>();
167  auto pOutTcp = std::make_unique<EcalEBTrigPrimDigiCollection>();
168 
169  // if ( e.id().event() != 648 ) return;
170 
171  //std::cout << " Event number " << e.id().event() << std::endl;
172 
173  // invoke algorithm
174 
175  const EBDigiCollection* ebdigi = nullptr;
176  ebdigi = barrelDigiHandle.product();
177  algo_->run(ebdigi, *pOut, *pOutTcp);
178 
179  if (debug_)
180  std::cout << "produce"
181  << " For Barrel " << pOut->size() << " TP Digis were produced" << std::endl;
182 
183  // debug prints if TP >0
184 
185  int nonZeroTP = 0;
186  for (unsigned int i = 0; i < pOut->size(); ++i) {
187  if (debug_) {
188  std::cout << "EcalTPG Printing only non zero TP "
189  << " For tower " << (((*pOut)[i])).id() << ", TP is " << (*pOut)[i];
190  for (int isam = 0; isam < (*pOut)[i].size(); ++isam) {
191  if ((*pOut)[i][isam].encodedEt() > 0) {
192  nonZeroTP++;
193  std::cout << " (*pOut)[i][isam].raw() " << (*pOut)[i][isam].raw() << " (*pOut)[i][isam].encodedEt() "
194  << (*pOut)[i][isam].encodedEt() << std::endl;
195  }
196  }
197  }
198  }
199  if (debug_)
200  std::cout << "EcalTPG"
201  << "\n =================> For Barrel , " << pOut->size()
202  << " TP Digis were produced (including zero ones)"
203  << " Non zero primitives were " << nonZeroTP << std::endl;
204 
205  // put result into the Event
206  e.put(std::move(pOut));
207  if (tcpFormat_)
208  e.put(std::move(pOutTcp), "formatTCP");
209 }

References algo_, gather_cfg::cout, debug_, MillePedeFileConverter_cfg::e, mps_fire::i, SummaryClient_cfi::labels, eostools::move(), nEvent_, edm::Handle< T >::product(), edm::DataFrameContainer::size(), tcpFormat_, and tokenEBdigi_.

Member Data Documentation

◆ algo_

std::unique_ptr<EcalEBTrigPrimTestAlgo> EcalEBTrigPrimProducer::algo_
private

Definition at line 59 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun(), endRun(), getRecords(), and produce().

◆ barrelOnly_

bool EcalEBTrigPrimProducer::barrelOnly_
private

Definition at line 60 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun(), and EcalEBTrigPrimProducer().

◆ binOfMaximum_

int EcalEBTrigPrimProducer::binOfMaximum_
private

Definition at line 82 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun().

◆ cacheID_

unsigned long long EcalEBTrigPrimProducer::cacheID_
private

Definition at line 86 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun().

◆ debug_

bool EcalEBTrigPrimProducer::debug_
private

Definition at line 62 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun(), and produce().

◆ eTTmapToken_

edm::ESGetToken<EcalTrigTowerConstituentsMap, IdealGeometryRecord> EcalEBTrigPrimProducer::eTTmapToken_
private

Definition at line 79 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun(), and EcalEBTrigPrimProducer().

◆ famos_

bool EcalEBTrigPrimProducer::famos_
private

Definition at line 63 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun().

◆ fillBinOfMaximumFromHistory_

bool EcalEBTrigPrimProducer::fillBinOfMaximumFromHistory_
private

Definition at line 83 of file EcalEBTrigPrimProducer.h.

◆ nEvent_

int EcalEBTrigPrimProducer::nEvent_
private

Definition at line 65 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun(), and produce().

◆ nSamples_

int EcalEBTrigPrimProducer::nSamples_
private

Definition at line 64 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun().

◆ tcpFormat_

bool EcalEBTrigPrimProducer::tcpFormat_
private

Definition at line 61 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun(), EcalEBTrigPrimProducer(), and produce().

◆ theEcalTPGCrystalStatus_Token_

edm::ESGetToken<EcalTPGCrystalStatus, EcalTPGCrystalStatusRcd> EcalEBTrigPrimProducer::theEcalTPGCrystalStatus_Token_
private

Definition at line 70 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGLinearization_Token_

edm::ESGetToken<EcalTPGLinearizationConst, EcalTPGLinearizationConstRcd> EcalEBTrigPrimProducer::theEcalTPGLinearization_Token_
private

Definition at line 68 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGLutGroup_Token_

edm::ESGetToken<EcalTPGLutGroup, EcalTPGLutGroupRcd> EcalEBTrigPrimProducer::theEcalTPGLutGroup_Token_
private

Definition at line 74 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGLutIdMap_Token_

edm::ESGetToken<EcalTPGLutIdMap, EcalTPGLutIdMapRcd> EcalEBTrigPrimProducer::theEcalTPGLutIdMap_Token_
private

Definition at line 75 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGPedestals_Token_

edm::ESGetToken<EcalTPGPedestals, EcalTPGPedestalsRcd> EcalEBTrigPrimProducer::theEcalTPGPedestals_Token_
private

Definition at line 69 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGSlidingWindow_Token_

edm::ESGetToken<EcalTPGSlidingWindow, EcalTPGSlidingWindowRcd> EcalEBTrigPrimProducer::theEcalTPGSlidingWindow_Token_
private

Definition at line 73 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGSpike_Token_

edm::ESGetToken<EcalTPGSpike, EcalTPGSpikeRcd> EcalEBTrigPrimProducer::theEcalTPGSpike_Token_
private

Definition at line 77 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGTowerStatus_Token_

edm::ESGetToken<EcalTPGTowerStatus, EcalTPGTowerStatusRcd> EcalEBTrigPrimProducer::theEcalTPGTowerStatus_Token_
private

Definition at line 76 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGWEightGroup_Token_

edm::ESGetToken<EcalTPGWeightGroup, EcalTPGWeightGroupRcd> EcalEBTrigPrimProducer::theEcalTPGWEightGroup_Token_
private

Definition at line 72 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theEcalTPGWEightIdMap_Token_

edm::ESGetToken<EcalTPGWeightIdMap, EcalTPGWeightIdMapRcd> EcalEBTrigPrimProducer::theEcalTPGWEightIdMap_Token_
private

Definition at line 71 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and getRecords().

◆ theGeometryToken_

edm::ESGetToken<CaloGeometry, CaloGeometryRecord> EcalEBTrigPrimProducer::theGeometryToken_
private

Definition at line 80 of file EcalEBTrigPrimProducer.h.

Referenced by beginRun(), and EcalEBTrigPrimProducer().

◆ tokenEBdigi_

edm::EDGetTokenT<EBDigiCollection> EcalEBTrigPrimProducer::tokenEBdigi_
private

Definition at line 67 of file EcalEBTrigPrimProducer.h.

Referenced by EcalEBTrigPrimProducer(), and produce().

SummaryClient_cfi.labels
labels
Definition: SummaryClient_cfi.py:61
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
EcalEBTrigPrimProducer::algo_
std::unique_ptr< EcalEBTrigPrimTestAlgo > algo_
Definition: EcalEBTrigPrimProducer.h:59
EcalTPGWeightIdMap
Definition: EcalTPGWeightIdMap.h:10
mps_fire.i
i
Definition: mps_fire.py:428
edm::Handle::product
T const * product() const
Definition: Handle.h:70
EcalEBTrigPrimProducer::cacheID_
unsigned long long cacheID_
Definition: EcalEBTrigPrimProducer.h:86
EcalTPGSpike
Definition: EcalTPGSpike.h:9
gather_cfg.cout
cout
Definition: gather_cfg.py:144
EcalEBTrigPrimProducer::theEcalTPGLutGroup_Token_
edm::ESGetToken< EcalTPGLutGroup, EcalTPGLutGroupRcd > theEcalTPGLutGroup_Token_
Definition: EcalEBTrigPrimProducer.h:74
EcalEBTrigPrimProducer::famos_
bool famos_
Definition: EcalEBTrigPrimProducer.h:63
EcalEBTrigPrimProducer::theEcalTPGWEightGroup_Token_
edm::ESGetToken< EcalTPGWeightGroup, EcalTPGWeightGroupRcd > theEcalTPGWEightGroup_Token_
Definition: EcalEBTrigPrimProducer.h:72
EcalTPGWeightGroup
Definition: EcalTPGWeightGroup.h:8
EcalCondObjectContainer
Definition: EcalCondObjectContainer.h:13
edm::Handle< EBDigiCollection >
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
EcalTPGLutGroup
Definition: EcalTPGLutGroup.h:13
EcalEBTrigPrimProducer::tcpFormat_
bool tcpFormat_
Definition: EcalEBTrigPrimProducer.h:61
EcalEBTrigPrimProducer::theEcalTPGPedestals_Token_
edm::ESGetToken< EcalTPGPedestals, EcalTPGPedestalsRcd > theEcalTPGPedestals_Token_
Definition: EcalEBTrigPrimProducer.h:69
EcalTPGSlidingWindow
Definition: EcalTPGSlidingWindow.h:9
EcalEBTrigPrimProducer::theEcalTPGCrystalStatus_Token_
edm::ESGetToken< EcalTPGCrystalStatus, EcalTPGCrystalStatusRcd > theEcalTPGCrystalStatus_Token_
Definition: EcalEBTrigPrimProducer.h:70
EcalEBTrigPrimProducer::theEcalTPGLinearization_Token_
edm::ESGetToken< EcalTPGLinearizationConst, EcalTPGLinearizationConstRcd > theEcalTPGLinearization_Token_
Definition: EcalEBTrigPrimProducer.h:68
edm::ESHandle
Definition: DTSurvey.h:22
EcalEBTrigPrimProducer::binOfMaximum_
int binOfMaximum_
Definition: EcalEBTrigPrimProducer.h:82
EcalEBTrigPrimProducer::theEcalTPGWEightIdMap_Token_
edm::ESGetToken< EcalTPGWeightIdMap, EcalTPGWeightIdMapRcd > theEcalTPGWEightIdMap_Token_
Definition: EcalEBTrigPrimProducer.h:71
EcalEBTrigPrimProducer::barrelOnly_
bool barrelOnly_
Definition: EcalEBTrigPrimProducer.h:60
EcalTPGLutIdMap
Definition: EcalTPGLutIdMap.h:10
EBDigiCollection
Definition: EcalDigiCollections.h:56
EcalEBTrigPrimProducer::debug_
bool debug_
Definition: EcalEBTrigPrimProducer.h:62
EcalEBTrigPrimProducer::theEcalTPGSlidingWindow_Token_
edm::ESGetToken< EcalTPGSlidingWindow, EcalTPGSlidingWindowRcd > theEcalTPGSlidingWindow_Token_
Definition: EcalEBTrigPrimProducer.h:73
EcalEBTrigPrimProducer::theEcalTPGTowerStatus_Token_
edm::ESGetToken< EcalTPGTowerStatus, EcalTPGTowerStatusRcd > theEcalTPGTowerStatus_Token_
Definition: EcalEBTrigPrimProducer.h:76
EcalTPGTowerStatus
Definition: EcalTPGTowerStatus.h:9
eostools.move
def move(src, dest)
Definition: eostools.py:511
EcalEBTrigPrimProducer::nSamples_
int nSamples_
Definition: EcalEBTrigPrimProducer.h:64
EcalEBTrigPrimProducer::theGeometryToken_
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > theGeometryToken_
Definition: EcalEBTrigPrimProducer.h:80
EcalEBTrigPrimProducer::theEcalTPGLutIdMap_Token_
edm::ESGetToken< EcalTPGLutIdMap, EcalTPGLutIdMapRcd > theEcalTPGLutIdMap_Token_
Definition: EcalEBTrigPrimProducer.h:75
EcalEBTrigPrimProducer::theEcalTPGSpike_Token_
edm::ESGetToken< EcalTPGSpike, EcalTPGSpikeRcd > theEcalTPGSpike_Token_
Definition: EcalEBTrigPrimProducer.h:77
EcalEBTrigPrimProducer::eTTmapToken_
edm::ESGetToken< EcalTrigTowerConstituentsMap, IdealGeometryRecord > eTTmapToken_
Definition: EcalEBTrigPrimProducer.h:79
EcalEBTrigPrimProducer::getRecords
unsigned long long getRecords(edm::EventSetup const &setup)
Definition: EcalEBTrigPrimProducer.cc:95
EcalTPGLinearizationConstRcd
Definition: EcalTPGLinearizationConstRcd.h:5
EcalEBTrigPrimProducer::nEvent_
int nEvent_
Definition: EcalEBTrigPrimProducer.h:65
edm::InputTag
Definition: InputTag.h:15
edm::ProductLabels
Definition: ProductLabels.h:4
EcalEBTrigPrimProducer::tokenEBdigi_
edm::EDGetTokenT< EBDigiCollection > tokenEBdigi_
Definition: EcalEBTrigPrimProducer.h:67
edm::DataFrameContainer::size
size_type size() const
Definition: DataFrameContainer.h:162
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37