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

#include <HGCDigiProducer.h>

Inheritance diagram for HGCDigiProducer:
DigiAccumulatorMixMod

Public Member Functions

virtual void accumulate (edm::Event const &, edm::EventSetup const &) override
 
virtual void accumulate (PileUpEventPrincipal const &, edm::EventSetup const &, edm::StreamID const &) override
 
virtual void beginRun (edm::Run const &, edm::EventSetup const &) override
 
virtual void endRun (edm::Run const &, edm::EventSetup const &) override
 
virtual void finalizeEvent (edm::Event &, edm::EventSetup const &) override
 
 HGCDigiProducer (edm::ParameterSet const &pset, edm::one::EDProducerBase &mixMod, edm::ConsumesCollector &iC)
 
 HGCDigiProducer (edm::ParameterSet const &pset, edm::ConsumesCollector &iC)
 
virtual void initializeEvent (edm::Event const &, edm::EventSetup const &) override
 
 ~HGCDigiProducer ()
 
- Public Member Functions inherited from DigiAccumulatorMixMod
virtual void beginLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup)
 
 DigiAccumulatorMixMod ()
 
virtual void endLuminosityBlock (edm::LuminosityBlock const &lumi, 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 Member Functions

CLHEP::HepRandomEngine * randomEngine (edm::StreamID const &streamID)
 

Private Attributes

std::vector
< CLHEP::HepRandomEngine * > 
randomEngines_
 
std::unique_ptr< HGCDigitizertheDigitizer_
 

Detailed Description

Definition at line 23 of file HGCDigiProducer.h.

Constructor & Destructor Documentation

HGCDigiProducer::HGCDigiProducer ( edm::ParameterSet const &  pset,
edm::one::EDProducerBase mixMod,
edm::ConsumesCollector iC 
)

Definition at line 10 of file HGCDigiProducer.cc.

References theDigitizer_.

10  :
12  theDigitizer_(new HGCDigitizer(pset, iC)) {
13  if (theDigitizer_->producesEEDigis())
14  mixMod.produces<HGCEEDigiCollection>(theDigitizer_->digiCollection());
15  if (theDigitizer_->producesHEfrontDigis() ||
16  theDigitizer_->producesHEbackDigis() )
17  mixMod.produces<HGCHEDigiCollection>(theDigitizer_->digiCollection());
18 }
std::unique_ptr< HGCDigitizer > theDigitizer_
HGCDigiProducer::HGCDigiProducer ( edm::ParameterSet const &  pset,
edm::ConsumesCollector iC 
)

Definition at line 20 of file HGCDigiProducer.cc.

20  :
22  theDigitizer_(new HGCDigitizer(pset, iC)) {
23 }
std::unique_ptr< HGCDigitizer > theDigitizer_
HGCDigiProducer::~HGCDigiProducer ( )

Definition at line 25 of file HGCDigiProducer.cc.

25 { }

Member Function Documentation

void HGCDigiProducer::accumulate ( edm::Event const &  event,
edm::EventSetup const &  es 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 35 of file HGCDigiProducer.cc.

References randomEngine(), edm::Event::streamID(), and theDigitizer_.

35  {
36  theDigitizer_->accumulate(event, es, randomEngine(event.streamID()));
37 }
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
std::unique_ptr< HGCDigitizer > theDigitizer_
void HGCDigiProducer::accumulate ( PileUpEventPrincipal const &  event,
edm::EventSetup const &  es,
edm::StreamID const &  streamID 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 39 of file HGCDigiProducer.cc.

References randomEngine(), and theDigitizer_.

39  {
40  theDigitizer_->accumulate(event, es, randomEngine(streamID));
41 }
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
std::unique_ptr< HGCDigitizer > theDigitizer_
void HGCDigiProducer::beginRun ( edm::Run const &  ,
edm::EventSetup const &  es 
)
overridevirtual

Reimplemented from DigiAccumulatorMixMod.

Definition at line 43 of file HGCDigiProducer.cc.

References theDigitizer_.

43  {
44  theDigitizer_->beginRun(es);
45 }
std::unique_ptr< HGCDigitizer > theDigitizer_
void HGCDigiProducer::endRun ( edm::Run const &  ,
edm::EventSetup const &   
)
overridevirtual

Reimplemented from DigiAccumulatorMixMod.

Definition at line 47 of file HGCDigiProducer.cc.

References theDigitizer_.

47  {
48  theDigitizer_->endRun();
49 }
std::unique_ptr< HGCDigitizer > theDigitizer_
void HGCDigiProducer::finalizeEvent ( edm::Event event,
edm::EventSetup const &  es 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 31 of file HGCDigiProducer.cc.

References randomEngine(), edm::Event::streamID(), and theDigitizer_.

31  {
32  theDigitizer_->finalizeEvent(event, es, randomEngine(event.streamID()));
33 }
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
std::unique_ptr< HGCDigitizer > theDigitizer_
StreamID streamID() const
Definition: Event.h:79
void HGCDigiProducer::initializeEvent ( edm::Event const &  event,
edm::EventSetup const &  es 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 27 of file HGCDigiProducer.cc.

References theDigitizer_.

27  {
28  theDigitizer_->initializeEvent(event, es);
29 }
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
std::unique_ptr< HGCDigitizer > theDigitizer_
CLHEP::HepRandomEngine * HGCDigiProducer::randomEngine ( edm::StreamID const &  streamID)
private

Definition at line 51 of file HGCDigiProducer.cc.

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

Referenced by accumulate(), and finalizeEvent().

51  {
52  unsigned int index = streamID.value();
53  if(index >= randomEngines_.size()) {
54  randomEngines_.resize(index + 1, nullptr);
55  }
56  CLHEP::HepRandomEngine* ptr = randomEngines_[index];
57  if(!ptr) {
59  ptr = &rng->getEngine(streamID);
60  randomEngines_[index] = ptr;
61  }
62  return ptr;
63 }
std::vector< CLHEP::HepRandomEngine * > randomEngines_
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &) const =0
Use this engine in event methods.

Member Data Documentation

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

Definition at line 39 of file HGCDigiProducer.h.

Referenced by randomEngine().

std::unique_ptr<HGCDigitizer> HGCDigiProducer::theDigitizer_
private