CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
ME0SegmentProducer Class Reference
Inheritance diagram for ME0SegmentProducer:
edm::stream::EDProducer<>

Public Member Functions

 ME0SegmentProducer (const edm::ParameterSet &)
 Constructor. More...
 
void produce (edm::Event &, const edm::EventSetup &) override
 Produce the ME0Segment collection. More...
 
 ~ME0SegmentProducer () override
 Destructor. More...
 
- 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 Attributes

int iev
 
edm::ESGetToken< ME0Geometry, MuonGeometryRecordme0GeomToken_
 
std::unique_ptr< ME0SegmentBuildersegmentBuilder_
 
edm::EDGetTokenT< ME0RecHitCollectiontheME0RecHitToken
 

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

CSCSegmentProducer Produces a collection of ME0Segment's in endcap muon ME0s.

Author
Marcello Maggi

Definition at line 24 of file ME0SegmentProducer.cc.

Constructor & Destructor Documentation

◆ ME0SegmentProducer()

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

Constructor.

Definition at line 40 of file ME0SegmentProducer.cc.

40  : iev(0) {
41  theME0RecHitToken = consumes<ME0RecHitCollection>(ps.getParameter<edm::InputTag>("me0RecHitLabel"));
42  segmentBuilder_ = std::make_unique<ME0SegmentBuilder>(ps); // pass on the Parameter Set
43  me0GeomToken_ = esConsumes<ME0Geometry, MuonGeometryRecord>();
44  // register what this produces
45  produces<ME0SegmentCollection>();
46 }

References edm::ParameterSet::getParameter(), me0GeomToken_, segmentBuilder_, and theME0RecHitToken.

◆ ~ME0SegmentProducer()

ME0SegmentProducer::~ME0SegmentProducer ( )
inlineoverride

Destructor.

Definition at line 29 of file ME0SegmentProducer.cc.

29 {}

Member Function Documentation

◆ produce()

void ME0SegmentProducer::produce ( edm::Event ev,
const edm::EventSetup setup 
)
override

Produce the ME0Segment collection.

Definition at line 48 of file ME0SegmentProducer.cc.

48  {
49  LogDebug("ME0SegmentProducer") << "start producing segments for " << ++iev << "th event with ME0 data";
50 
51  // find the geometry (& conditions?) for this event & cache it in the builder
53  const ME0Geometry* mgeom = &*me0g;
54  segmentBuilder_->setGeometry(mgeom);
55 
56  // get the collection of ME0RecHit
58  ev.getByToken(theME0RecHitToken, me0RecHits);
59 
60  // create empty collection of Segments
61  auto oc = std::make_unique<ME0SegmentCollection>();
62 
63  // fill the collection
64  segmentBuilder_->build(me0RecHits.product(), *oc); //@@ FILL oc
65 
66  // put collection in event
67  ev.put(std::move(oc));
68 }

References ev, iev, LogDebug, me0GeomToken_, me0RecHits_cfi::me0RecHits, eostools::move(), segmentBuilder_, singleTopDQM_cfi::setup, and theME0RecHitToken.

Member Data Documentation

◆ iev

int ME0SegmentProducer::iev
private

Definition at line 34 of file ME0SegmentProducer.cc.

Referenced by produce().

◆ me0GeomToken_

edm::ESGetToken<ME0Geometry, MuonGeometryRecord> ME0SegmentProducer::me0GeomToken_
private

Definition at line 37 of file ME0SegmentProducer.cc.

Referenced by ME0SegmentProducer(), and produce().

◆ segmentBuilder_

std::unique_ptr<ME0SegmentBuilder> ME0SegmentProducer::segmentBuilder_
private

Definition at line 36 of file ME0SegmentProducer.cc.

Referenced by ME0SegmentProducer(), and produce().

◆ theME0RecHitToken

edm::EDGetTokenT<ME0RecHitCollection> ME0SegmentProducer::theME0RecHitToken
private

Definition at line 35 of file ME0SegmentProducer.cc.

Referenced by ME0SegmentProducer(), and produce().

ME0Geometry
Definition: ME0Geometry.h:12
me0RecHits_cfi.me0RecHits
me0RecHits
Definition: me0RecHits_cfi.py:3
ME0SegmentProducer::segmentBuilder_
std::unique_ptr< ME0SegmentBuilder > segmentBuilder_
Definition: ME0SegmentProducer.cc:36
edm::Handle
Definition: AssociativeIterator.h:50
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
edm::ESHandle< ME0Geometry >
ME0SegmentProducer::iev
int iev
Definition: ME0SegmentProducer.cc:34
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
ME0SegmentProducer::me0GeomToken_
edm::ESGetToken< ME0Geometry, MuonGeometryRecord > me0GeomToken_
Definition: ME0SegmentProducer.cc:37
ME0SegmentProducer::theME0RecHitToken
edm::EDGetTokenT< ME0RecHitCollection > theME0RecHitToken
Definition: ME0SegmentProducer.cc:35
eostools.move
def move(src, dest)
Definition: eostools.py:511
ev
bool ev
Definition: Hydjet2Hadronizer.cc:95
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::InputTag
Definition: InputTag.h:15