CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Types | Public Member Functions | Private Attributes
ME0DigiProducer Class Reference
Inheritance diagram for ME0DigiProducer:
edm::stream::EDProducer<>

Public Types

typedef edm::DetSetVector
< ME0DigiSimLink
ME0DigiSimLinks
 
- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Public Member Functions

void beginRun (const edm::Run &, const edm::EventSetup &) override
 
 ME0DigiProducer (const edm::ParameterSet &ps)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~ME0DigiProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Attributes

edm::EDGetTokenT
< CrossingFrame< PSimHit > > 
cf_token
 
edm::ESGetToken< ME0Geometry,
MuonGeometryRecord
geom_token_
 
std::unique_ptr< ME0DigiModelME0DigiModel_
 

Detailed Description

Definition at line 40 of file ME0DigiProducer.cc.

Member Typedef Documentation

Definition at line 42 of file ME0DigiProducer.cc.

Constructor & Destructor Documentation

ME0DigiProducer::ME0DigiProducer ( const edm::ParameterSet ps)
explicit

Definition at line 60 of file ME0DigiProducer.cc.

References get, edm::ParameterSet::getParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

61  : ME0DigiModel_{
62  ME0DigiModelFactory::get()->create("ME0" + ps.getParameter<std::string>("digiModelString") + "Model", ps)} {
63  produces<ME0DigiCollection>();
64  produces<ME0DigiSimLinks>("ME0");
65 
67  if (!rng.isAvailable()) {
68  throw cms::Exception("Configuration")
69  << "ME0DigiProducer::ME0DigiProducer() - RandomNumberGeneratorService is not present in configuration file.\n"
70  << "Add the service in the configuration file or remove the modules that require it.";
71  }
72 
73  LogDebug("ME0DigiProducer") << "Using ME0" + ps.getParameter<std::string>("digiModelString") + "Model";
74 
75  std::string mix_(ps.getParameter<std::string>("mixLabel"));
76  std::string collection_(ps.getParameter<std::string>("inputCollection"));
77 
78  cf_token = consumes<CrossingFrame<PSimHit> >(edm::InputTag(mix_, collection_));
79  geom_token_ = esConsumes<ME0Geometry, MuonGeometryRecord, edm::Transition::BeginRun>();
80 }
std::unique_ptr< ME0DigiModel > ME0DigiModel_
edm::ESGetToken< ME0Geometry, MuonGeometryRecord > geom_token_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::EDGetTokenT< CrossingFrame< PSimHit > > cf_token
#define get
#define LogDebug(id)
ME0DigiProducer::~ME0DigiProducer ( )
overridedefault

Member Function Documentation

void ME0DigiProducer::beginRun ( const edm::Run ,
const edm::EventSetup eventSetup 
)
override

Definition at line 84 of file ME0DigiProducer.cc.

References geom_token_, edm::EventSetup::getHandle(), and ME0DigiModel_.

84  {
86  ME0DigiModel_->setGeometry(&*hGeom);
87  ME0DigiModel_->setup();
88 }
std::unique_ptr< ME0DigiModel > ME0DigiModel_
edm::ESGetToken< ME0Geometry, MuonGeometryRecord > geom_token_
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:157
void ME0DigiProducer::produce ( edm::Event e,
const edm::EventSetup eventSetup 
)
override

Definition at line 90 of file ME0DigiProducer.cc.

References cf_token, edm::Event::getByToken(), edm::RandomNumberGenerator::getEngine(), LogDebug, ME0DigiModel_, eostools::move(), edm::Handle< T >::product(), edm::Event::put(), trackerHits::simHits, and edm::Event::streamID().

90  {
92  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
93 
95  e.getByToken(cf_token, cf);
96 
98 
99  // Create empty output
100  auto digis = std::make_unique<ME0DigiCollection>();
101  auto me0DigiSimLinks = std::make_unique<ME0DigiSimLinks>();
102 
103  // arrange the hits by eta partition
104  std::map<uint32_t, edm::PSimHitContainer> hitMap;
105  for (const auto& hit : hits) {
106  hitMap[hit.detUnitId()].emplace_back(hit);
107  }
108 
109  // simulate signal and noise for each eta partition
110  const auto& etaPartitions(ME0DigiModel_->getGeometry()->etaPartitions());
111 
112  for (const auto& roll : etaPartitions) {
113  const ME0DetId detId(roll->id());
114  const uint32_t rawId(detId.rawId());
115  const auto& simHits(hitMap[rawId]);
116 
117  LogDebug("ME0DigiProducer") << "ME0DigiProducer: found " << simHits.size() << " hit(s) in eta partition" << rawId;
118 
119  ME0DigiModel_->simulateSignal(roll, simHits, engine);
120  ME0DigiModel_->simulateNoise(roll, engine);
121  ME0DigiModel_->fillDigis(rawId, *digis);
122  (*me0DigiSimLinks).insert(ME0DigiModel_->me0DigiSimLinks());
123  }
124 
125  // store them in the event
126  e.put(std::move(digis));
127  e.put(std::move(me0DigiSimLinks), "ME0");
128 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
std::unique_ptr< ME0DigiModel > ME0DigiModel_
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
def move
Definition: eostools.py:511
T const * product() const
Definition: Handle.h:70
tuple simHits
Definition: trackerHits.py:16
StreamID streamID() const
Definition: Event.h:98
edm::EDGetTokenT< CrossingFrame< PSimHit > > cf_token
#define LogDebug(id)

Member Data Documentation

edm::EDGetTokenT<CrossingFrame<PSimHit> > ME0DigiProducer::cf_token
private

Definition at line 54 of file ME0DigiProducer.cc.

Referenced by produce().

edm::ESGetToken<ME0Geometry, MuonGeometryRecord> ME0DigiProducer::geom_token_
private

Definition at line 55 of file ME0DigiProducer.cc.

Referenced by beginRun().

std::unique_ptr<ME0DigiModel> ME0DigiProducer::ME0DigiModel_
private

Definition at line 57 of file ME0DigiProducer.cc.

Referenced by beginRun(), and produce().