CMS 3D CMS Logo

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

#include <HcalTBDigiProducer.h>

Inheritance diagram for HcalTBDigiProducer:
DigiAccumulatorMixMod

Public Member Functions

virtual void accumulate (edm::Event const &e, edm::EventSetup const &c) override
 
virtual void accumulate (PileUpEventPrincipal const &e, edm::EventSetup const &c, edm::StreamID const &) override
 
virtual void finalizeEvent (edm::Event &e, edm::EventSetup const &c) override
 
 HcalTBDigiProducer (const edm::ParameterSet &ps, edm::one::EDProducerBase &mixMod, edm::ConsumesCollector &iC)
 
virtual void initializeEvent (edm::Event const &e, edm::EventSetup const &c) override
 
virtual ~HcalTBDigiProducer ()
 
- Public Member Functions inherited from DigiAccumulatorMixMod
virtual void beginLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup)
 
virtual void beginRun (edm::Run const &run, edm::EventSetup const &setup)
 
 DigiAccumulatorMixMod ()
 
virtual void endLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup)
 
virtual void endRun (edm::Run const &run, edm::EventSetup const &setup)
 
virtual void finalizeBunchCrossing (edm::Event &event, edm::EventSetup const &setup, int bunchCrossing)
 
virtual PileupMixingContentgetEventPileupInfo ()
 
virtual void initializeBunchCrossing (edm::Event const &event, edm::EventSetup const &setup, int bunchCrossing)
 
virtual void StorePileupInformation (std::vector< int > &numInteractionList, std::vector< int > &bunchCrossingList, std::vector< float > &TrueInteractionList, std::vector< edm::EventID > &eventList, int bunchSpace)
 
virtual ~DigiAccumulatorMixMod ()
 

Private Types

typedef CaloTDigitizer
< HBHEDigitizerTraits
HBHEDigitizer
 
typedef CaloTDigitizer
< HODigitizerTraits
HODigitizer
 

Private Member Functions

void accumulateCaloHits (edm::Handle< std::vector< PCaloHit > > const &hits, int bunchCrossing, CLHEP::HepRandomEngine *)
 
void checkGeometry (const edm::EventSetup &eventSetup)
 
CLHEP::HepRandomEngine * randomEngine (edm::StreamID const &streamID)
 
void setPhaseShift (const DetId &detId)
 
void sortHits (const edm::PCaloHitContainer &hits)
 fills the vectors for each subdetector More...
 
void updateGeometry ()
 

Private Attributes

bool doPhaseShift
 
std::string ecalTBInfoLabel
 
std::vector< DetIdhbheCells
 
std::vector< DetIdhoCells
 
std::vector
< CLHEP::HepRandomEngine * > 
randomEngines_
 
HcalAmplifiertheAmplifier
 
HcalCoderFactorytheCoderFactory
 
HcalElectronicsSimtheElectronicsSim
 
const CaloGeometrytheGeometry
 
HBHEDigitizertheHBHEDigitizer
 
HBHEHitFilter theHBHEHitFilter
 
std::vector< PCaloHittheHBHEHits
 
CaloHitResponsetheHBHEResponse
 
CaloVShapetheHcalIntegratedShape
 
CaloVShapetheHcalShape
 
HcalHitCorrectiontheHitCorrection
 
HODigitizertheHODigitizer
 
HOHitFilter theHOHitFilter
 
std::vector< PCaloHittheHOHits
 
CaloHitResponsetheHOResponse
 
HcalTBSimParameterMaptheParameterMap
 
double thisPhaseShift
 
double tunePhaseShift
 

Detailed Description

Definition at line 35 of file HcalTBDigiProducer.h.

Member Typedef Documentation

Reconstruction algorithm

Definition at line 63 of file HcalTBDigiProducer.h.

Definition at line 64 of file HcalTBDigiProducer.h.

Constructor & Destructor Documentation

HcalTBDigiProducer::HcalTBDigiProducer ( const edm::ParameterSet ps,
edm::one::EDProducerBase mixMod,
edm::ConsumesCollector iC 
)
explicit

Definition at line 20 of file HcalTBDigiProducer.cc.

References edm::ConsumesCollector::consumes(), HcalCoderFactory::DB, doPhaseShift, ecalTBInfoLabel, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), DetId::Hcal, HLT_25ns14e33_v1_cff::InputTag, instance, CaloHitResponse::setHitCorrection(), CaloHitResponse::setHitFilter(), HcalTBSimParameterMap::simParameters(), AlCaHLTBitMon_QueryRunRegistry::string, theAmplifier, theCoderFactory, theElectronicsSim, theHBHEDigitizer, theHBHEHitFilter, theHBHEResponse, theHitCorrection, theHODigitizer, theHOHitFilter, theHOResponse, theParameterMap, and tunePhaseShift.

20  :
22  theHcalShape(new HcalShape()),
29  std::string const instance("simHcalDigis");
30  mixMod.produces<HBHEDigiCollection>(instance);
31  mixMod.produces<HODigiCollection>(instance);
32  iC.consumes<std::vector<PCaloHit> >(edm::InputTag("g4SimHits", "HcalHits"));
33 
34  DetId detId(DetId::Hcal, 1);
35  bool syncPhase = (theParameterMap->simParameters(detId)).syncPhase();
36  doPhaseShift = !syncPhase;
37 
40 
41  bool doTimeSlew = ps.getParameter<bool>("doTimeSlew");
42  if(doTimeSlew) {
43  // no time slewing for HF
47  }
48 
49  bool doNoise = ps.getParameter<bool>("doNoise");
50  bool dummy1 = false;
51  bool dummy2 = false; // extra arguments for premixing
52  theAmplifier = new HcalAmplifier(theParameterMap, doNoise, dummy1, dummy2);
55 
58 
59  tunePhaseShift = ps.getUntrackedParameter<double>("tunePhaseShiftTB", 1.);
60  ecalTBInfoLabel = ps.getUntrackedParameter<std::string>("EcalTBInfoLabel","SimEcalTBG4Object");
61  edm::LogInfo("HcalSim") << "HcalTBDigiProducer initialized with doNoise = "
62  << doNoise << ", doTimeSlew = " << doTimeSlew
63  << " and doPhaseShift = " << doPhaseShift
64  << " tunePhasShift = " << tunePhaseShift;
65 
66  if (doPhaseShift) {
68  }
69 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
virtual const CaloSimParameters & simParameters(const DetId &id) const
CaloHitResponse * theHBHEResponse
static PFTauRenderPlugin instance
HBHEHitFilter theHBHEHitFilter
HODigitizer * theHODigitizer
HcalElectronicsSim * theElectronicsSim
HOHitFilter theHOHitFilter
HcalTBSimParameterMap * theParameterMap
CaloTDigitizer< HBHEDigitizerTraits > HBHEDigitizer
std::vector< PCaloHit > theHBHEHits
CaloTDigitizer< HODigitizerTraits > HODigitizer
CaloVShape * theHcalIntegratedShape
void setHitFilter(const CaloVHitFilter *filter)
if you want to reject hits, for example, from a certain subdetector, set this
Creates electronics signals from hits.
HBHEDigitizer * theHBHEDigitizer
shaper for Hcal (not for HF)
Definition: HcalShape.h:15
std::vector< PCaloHit > theHOHits
Definition: DetId.h:18
CaloHitResponse * theHOResponse
HcalHitCorrection * theHitCorrection
HcalAmplifier * theAmplifier
std::string ecalTBInfoLabel
HcalCoderFactory * theCoderFactory
CaloVShape * theHcalShape
void setHitCorrection(const CaloVHitCorrection *hitCorrection)
If you want to correct hits, for attenuation or delay, set this.
HcalTBDigiProducer::~HcalTBDigiProducer ( )
virtual

Definition at line 71 of file HcalTBDigiProducer.cc.

References theAmplifier, theCoderFactory, theElectronicsSim, theHBHEDigitizer, theHBHEResponse, theHcalIntegratedShape, theHcalShape, theHitCorrection, theHODigitizer, theHOResponse, and theParameterMap.

71  {
72 
74  if (theHODigitizer) delete theHODigitizer;
75  if (theParameterMap) delete theParameterMap;
76  if (theHcalShape) delete theHcalShape;
78  if (theHBHEResponse) delete theHBHEResponse;
79  if (theHOResponse) delete theHOResponse;
81  if (theAmplifier) delete theAmplifier;
82  if (theCoderFactory) delete theCoderFactory;
84 }
CaloHitResponse * theHBHEResponse
HODigitizer * theHODigitizer
HcalElectronicsSim * theElectronicsSim
HcalTBSimParameterMap * theParameterMap
CaloVShape * theHcalIntegratedShape
HBHEDigitizer * theHBHEDigitizer
CaloHitResponse * theHOResponse
HcalHitCorrection * theHitCorrection
HcalAmplifier * theAmplifier
HcalCoderFactory * theCoderFactory
CaloVShape * theHcalShape

Member Function Documentation

void HcalTBDigiProducer::accumulate ( edm::Event const &  e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 130 of file HcalTBDigiProducer.cc.

References accumulateCaloHits(), edm::Event::getByLabel(), randomEngine(), and edm::Event::streamID().

130  {
131  // Step A: Get Inputs, and accumulate digis
132 
133  edm::InputTag hcalTag("g4SimHits", "HcalHits");
135  e.getByLabel(hcalTag, hcalHandle);
136 
137  accumulateCaloHits(hcalHandle, 0, randomEngine(e.streamID()));
138 }
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
void accumulateCaloHits(edm::Handle< std::vector< PCaloHit > > const &hits, int bunchCrossing, CLHEP::HepRandomEngine *)
void HcalTBDigiProducer::accumulate ( PileUpEventPrincipal const &  e,
edm::EventSetup const &  c,
edm::StreamID const &  streamID 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 140 of file HcalTBDigiProducer.cc.

References accumulateCaloHits(), PileUpEventPrincipal::bunchCrossing(), PileUpEventPrincipal::getByLabel(), and randomEngine().

140  {
141  // Step A: Get Inputs, and accumulate digis
142 
143  edm::InputTag hcalTag("g4SimHits", "HcalHits");
145  e.getByLabel(hcalTag, hcalHandle);
146 
147  accumulateCaloHits(hcalHandle, e.bunchCrossing(), randomEngine(streamID));
148 }
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
void accumulateCaloHits(edm::Handle< std::vector< PCaloHit > > const &hits, int bunchCrossing, CLHEP::HepRandomEngine *)
void HcalTBDigiProducer::accumulateCaloHits ( edm::Handle< std::vector< PCaloHit > > const &  hits,
int  bunchCrossing,
CLHEP::HepRandomEngine *  engine 
)
private

Definition at line 115 of file HcalTBDigiProducer.cc.

References CaloTDigitizer< Traits >::add(), HcalHitCorrection::fillChargeSums(), LogDebug, theHBHEDigitizer, theHitCorrection, and theHODigitizer.

Referenced by accumulate().

115  {
116 
117  LogDebug("HcalSim") << "HcalTBDigiProducer::accumulate trying to get SimHit";
118 
119  if(hcalHandle.isValid()) {
120  std::vector<PCaloHit> hits = *hcalHandle.product();
121  if(theHitCorrection != 0) {
123  }
124  LogDebug("HcalSim") << "HcalTBDigiProducer::accumulate Hits corrected";
125  theHBHEDigitizer->add(hits, bunchCrossing, engine);
126  theHODigitizer->add(hits, bunchCrossing, engine);
127  }
128 }
#define LogDebug(id)
HODigitizer * theHODigitizer
void add(const std::vector< PCaloHit > &hits, int bunchCrossing, CLHEP::HepRandomEngine *engine)
HBHEDigitizer * theHBHEDigitizer
void fillChargeSums(MixCollection< PCaloHit > &hits)
HcalHitCorrection * theHitCorrection
T const * product() const
Definition: Handle.h:81
void HcalTBDigiProducer::checkGeometry ( const edm::EventSetup eventSetup)
private

make sure the digitizer has the correct list of all cells that exist in the geometry

Definition at line 183 of file HcalTBDigiProducer.cc.

References geometry, edm::EventSetup::get(), theGeometry, and updateGeometry().

Referenced by initializeEvent().

183  {
184 
185  // TODO find a way to avoid doing this every event
187  eventSetup.get<CaloGeometryRecord>().get(geometry);
188 
189  const CaloGeometry * pGeometry = &*geometry;
190 
191  // see if we need to update
192  if(pGeometry != theGeometry) {
193  theGeometry = pGeometry;
194  updateGeometry();
195  }
196 }
const CaloGeometry * theGeometry
const T & get() const
Definition: EventSetup.h:56
ESHandle< TrackerGeometry > geometry
void HcalTBDigiProducer::finalizeEvent ( edm::Event e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 150 of file HcalTBDigiProducer.cc.

References instance, LogDebug, edm::Event::put(), randomEngine(), CaloTDigitizer< Traits >::run(), edm::Event::streamID(), AlCaHLTBitMon_QueryRunRegistry::string, theHBHEDigitizer, and theHODigitizer.

150  {
151  // Step B: Create empty output
152  std::auto_ptr<HBHEDigiCollection> hbheResult(new HBHEDigiCollection());
153  std::auto_ptr<HODigiCollection> hoResult(new HODigiCollection());
154  LogDebug("HcalSim") << "HcalTBDigiProducer::produce Empty collection created";
155  // Step C: Invoke the algorithm, getting back outputs.
156  theHBHEDigitizer->run(*hbheResult, randomEngine(e.streamID()));
157  edm::LogInfo("HcalSim") << "HcalTBDigiProducer: HBHE digis : " << hbheResult->size();
158  theHODigitizer->run(*hoResult, randomEngine(e.streamID()));
159  edm::LogInfo("HcalSim") << "HcalTBDigiProducer: HO digis : " << hoResult->size();
160 
161  // Step D: Put outputs into event
162  std::string const instance("simHcalDigis");
163  e.put(hbheResult, instance);
164  e.put(hoResult, instance);
165 
166 }
#define LogDebug(id)
static PFTauRenderPlugin instance
HODigitizer * theHODigitizer
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
edm::SortedCollection< HODataFrame > HODigiCollection
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
HBHEDigitizer * theHBHEDigitizer
void run(MixCollection< PCaloHit > &, DigiCollection &)
turns hits into digis
StreamID streamID() const
Definition: Event.h:79
edm::SortedCollection< HBHEDataFrame > HBHEDigiCollection
void HcalTBDigiProducer::initializeEvent ( edm::Event const &  e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 87 of file HcalTBDigiProducer.cc.

References checkGeometry(), doPhaseShift, ecalTBInfoLabel, edm::EventSetup::get(), edm::Event::getByLabel(), DetId::Hcal, CaloTDigitizer< Traits >::initializeHits(), edm::ESHandle< class >::product(), HcalCoderFactory::setDbService(), HcalAmplifier::setDbService(), setPhaseShift(), theAmplifier, theCoderFactory, theHBHEDigitizer, theHBHEHits, theHODigitizer, theHOHits, and thisPhaseShift.

87  {
88  // get the appropriate gains, noises, & widths for this event
90  eventSetup.get<HcalDbRecord>().get(conditions);
91  theAmplifier->setDbService(conditions.product());
92  theCoderFactory->setDbService(conditions.product());
93 
94  // get the correct geometry
95  checkGeometry(eventSetup);
96 
97  theHBHEHits.clear();
98  theHOHits.clear();
99  if (doPhaseShift) {
100 
101  edm::Handle<PEcalTBInfo> theEcalTBInfo;
102  e.getByLabel(ecalTBInfoLabel,theEcalTBInfo);
103  thisPhaseShift = theEcalTBInfo->phaseShift();
104 
105  DetId detIdHB(DetId::Hcal, 1);
106  setPhaseShift(detIdHB);
107  DetId detIdHO(DetId::Hcal, 3);
108  setPhaseShift(detIdHO);
109  }
110 
113 }
void setPhaseShift(const DetId &detId)
void setDbService(const HcalDbService *service)
the Producer will probably update this every event
void initializeHits()
HODigitizer * theHODigitizer
std::vector< PCaloHit > theHBHEHits
HBHEDigitizer * theHBHEDigitizer
void checkGeometry(const edm::EventSetup &eventSetup)
std::vector< PCaloHit > theHOHits
Definition: DetId.h:18
void setDbService(const HcalDbService *service)
T const * product() const
Definition: ESHandle.h:86
HcalAmplifier * theAmplifier
std::string ecalTBInfoLabel
HcalCoderFactory * theCoderFactory
CLHEP::HepRandomEngine * HcalTBDigiProducer::randomEngine ( edm::StreamID const &  streamID)
private

Definition at line 238 of file HcalTBDigiProducer.cc.

References edm::RandomNumberGenerator::getEngine(), cmsHarvester::index, randomEngines_, and edm::StreamID::value().

Referenced by accumulate(), and finalizeEvent().

238  {
239  unsigned int index = streamID.value();
240  if(index >= randomEngines_.size()) {
241  randomEngines_.resize(index + 1, nullptr);
242  }
243  CLHEP::HepRandomEngine* ptr = randomEngines_[index];
244  if(!ptr) {
246  ptr = &rng->getEngine(streamID);
247  randomEngines_[index] = ptr;
248  }
249  return ptr;
250 }
std::vector< CLHEP::HepRandomEngine * > randomEngines_
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &) const =0
Use this engine in event methods.
void HcalTBDigiProducer::setPhaseShift ( const DetId detId)
private

Definition at line 224 of file HcalTBDigiProducer.cc.

References Parameters::parameters, CaloHitResponse::setPhaseShift(), HcalTBSimParameterMap::simParameters(), DetId::subdetId(), CaloSimParameters::syncPhase(), theHBHEResponse, theHOResponse, theParameterMap, thisPhaseShift, and tunePhaseShift.

Referenced by initializeEvent().

224  {
225 
227  if ( !parameters.syncPhase() ) {
228  int myDet = detId.subdetId();
229  double passPhaseShift = thisPhaseShift + tunePhaseShift;
230  if (myDet <= 2) {
231  theHBHEResponse->setPhaseShift(passPhaseShift);
232  } else {
233  theHOResponse->setPhaseShift(passPhaseShift);
234  }
235  }
236 }
dictionary parameters
Definition: Parameters.py:2
virtual const CaloSimParameters & simParameters(const DetId &id) const
CaloHitResponse * theHBHEResponse
HcalTBSimParameterMap * theParameterMap
Main class for Parameters in different subdetectors.
void setPhaseShift(const double &thePhaseShift)
setting the phase shift for asynchronous trigger (e.g. test beams)
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
CaloHitResponse * theHOResponse
bool syncPhase() const
choice of the ADC time alignment (synchronous for LHC, asynchronous for test beams) ...
void HcalTBDigiProducer::sortHits ( const edm::PCaloHitContainer hits)
private

fills the vectors for each subdetector

Definition at line 168 of file HcalTBDigiProducer.cc.

References HcalBarrel, HcalEndcap, HcalOuter, theHBHEHits, and theHOHits.

168  {
169 
170  for (edm::PCaloHitContainer::const_iterator hitItr = hits.begin();
171  hitItr != hits.end(); ++hitItr) {
172  HcalSubdetector subdet = HcalDetId(hitItr->id()).subdet();
173  if(subdet == HcalBarrel || subdet == HcalEndcap) {
174  theHBHEHits.push_back(*hitItr);
175  } else if(subdet == HcalOuter) {
176  theHOHits.push_back(*hitItr);
177  } else {
178  edm::LogError("HcalSim") << "Bad HcalHit subdetector " << subdet;
179  }
180  }
181 }
std::vector< PCaloHit > theHBHEHits
HcalSubdetector
Definition: HcalAssistant.h:31
std::vector< PCaloHit > theHOHits
void HcalTBDigiProducer::updateGeometry ( )
private

Definition at line 198 of file HcalTBDigiProducer.cc.

References CaloGeometry::getValidDetIds(), hbheCells, DetId::Hcal, HcalBarrel, HcalEndcap, HcalOuter, hoCells, LogDebug, CaloTDigitizer< Traits >::setDetIds(), CaloHitResponse::setGeometry(), theGeometry, theHBHEDigitizer, theHBHEResponse, theHODigitizer, and theHOResponse.

Referenced by checkGeometry().

198  {
199 
202 
203  // Get cells for HB and HE
204  hbheCells.clear();
206  std::vector<DetId> heCells = theGeometry->getValidDetIds(DetId::Hcal, HcalEndcap);
207  // combine HB & HE
208  hbheCells.insert(hbheCells.end(), heCells.begin(), heCells.end());
209 
210  // Get cells for HO
211  hoCells.clear();
213 
214  edm::LogInfo("HcalSim") << "HcalTBDigiProducer update Geometry with "
215  << hbheCells.size() << " cells in HB/HE and "
216  << hoCells.size() << " cells in HO";
217 
219  LogDebug("HcalSim") << "HcalTBDigiProducer: Set DetID's for HB/HE";
221  LogDebug("HcalSim") << "HcalTBDigiProducer: Set DetID's for HO";
222 }
#define LogDebug(id)
void setGeometry(const CaloGeometry *geometry)
geometry needed for time-of-flight
std::vector< DetId > hoCells
CaloHitResponse * theHBHEResponse
HODigitizer * theHODigitizer
const CaloGeometry * theGeometry
HBHEDigitizer * theHBHEDigitizer
std::vector< DetId > hbheCells
CaloHitResponse * theHOResponse
std::vector< DetId > getValidDetIds() const
Get the list of all valid detector ids.
Definition: CaloGeometry.cc:90
void setDetIds(const std::vector< DetId > &detIds)

Member Data Documentation

bool HcalTBDigiProducer::doPhaseShift
private

Definition at line 94 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer(), and initializeEvent().

std::string HcalTBDigiProducer::ecalTBInfoLabel
private

Definition at line 91 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer(), and initializeEvent().

std::vector<DetId> HcalTBDigiProducer::hbheCells
private

Definition at line 86 of file HcalTBDigiProducer.h.

Referenced by updateGeometry().

std::vector<DetId> HcalTBDigiProducer::hoCells
private

Definition at line 87 of file HcalTBDigiProducer.h.

Referenced by updateGeometry().

std::vector<CLHEP::HepRandomEngine*> HcalTBDigiProducer::randomEngines_
private

Definition at line 97 of file HcalTBDigiProducer.h.

Referenced by randomEngine().

HcalAmplifier* HcalTBDigiProducer::theAmplifier
private

Definition at line 73 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer(), initializeEvent(), and ~HcalTBDigiProducer().

HcalCoderFactory* HcalTBDigiProducer::theCoderFactory
private

Definition at line 74 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer(), initializeEvent(), and ~HcalTBDigiProducer().

HcalElectronicsSim* HcalTBDigiProducer::theElectronicsSim
private

Definition at line 75 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer(), and ~HcalTBDigiProducer().

const CaloGeometry* HcalTBDigiProducer::theGeometry
private

Definition at line 85 of file HcalTBDigiProducer.h.

Referenced by checkGeometry(), and updateGeometry().

HBHEDigitizer* HcalTBDigiProducer::theHBHEDigitizer
private
HBHEHitFilter HcalTBDigiProducer::theHBHEHitFilter
private

Definition at line 77 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer().

std::vector<PCaloHit> HcalTBDigiProducer::theHBHEHits
private

Definition at line 89 of file HcalTBDigiProducer.h.

Referenced by initializeEvent(), and sortHits().

CaloHitResponse* HcalTBDigiProducer::theHBHEResponse
private
CaloVShape* HcalTBDigiProducer::theHcalIntegratedShape
private

Definition at line 68 of file HcalTBDigiProducer.h.

Referenced by ~HcalTBDigiProducer().

CaloVShape* HcalTBDigiProducer::theHcalShape
private

Definition at line 67 of file HcalTBDigiProducer.h.

Referenced by ~HcalTBDigiProducer().

HcalHitCorrection* HcalTBDigiProducer::theHitCorrection
private
HODigitizer* HcalTBDigiProducer::theHODigitizer
private
HOHitFilter HcalTBDigiProducer::theHOHitFilter
private

Definition at line 78 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer().

std::vector<PCaloHit> HcalTBDigiProducer::theHOHits
private

Definition at line 89 of file HcalTBDigiProducer.h.

Referenced by initializeEvent(), and sortHits().

CaloHitResponse* HcalTBDigiProducer::theHOResponse
private
HcalTBSimParameterMap* HcalTBDigiProducer::theParameterMap
private

Definition at line 66 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer(), setPhaseShift(), and ~HcalTBDigiProducer().

double HcalTBDigiProducer::thisPhaseShift
private

Definition at line 92 of file HcalTBDigiProducer.h.

Referenced by initializeEvent(), and setPhaseShift().

double HcalTBDigiProducer::tunePhaseShift
private

Definition at line 95 of file HcalTBDigiProducer.h.

Referenced by HcalTBDigiProducer(), and setPhaseShift().