CMS 3D CMS Logo

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

#include <CSCSegmentProducer.h>

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

Public Member Functions

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

int iev
 
edm::ESGetToken< CSCGeometry, MuonGeometryRecordm_cscGeometryToken
 
edm::EDGetTokenT< CSCRecHit2DCollectionm_token
 
CSCSegmentBuildersegmentBuilder_
 

Additional Inherited Members

- 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
 

Detailed Description

Produces a collection of CSCSegment's in endcap muon CSCs.

Definition at line 22 of file CSCSegmentProducer.h.

Constructor & Destructor Documentation

◆ CSCSegmentProducer()

CSCSegmentProducer::CSCSegmentProducer ( const edm::ParameterSet pas)
explicit

Constructor.

Definition at line 16 of file CSCSegmentProducer.cc.

References edm::ParameterSet::getParameter(), m_cscGeometryToken, m_token, and segmentBuilder_.

16  : iev(0) {
17  m_token = consumes<CSCRecHit2DCollection>(pas.getParameter<edm::InputTag>("inputObjects"));
18  m_cscGeometryToken = esConsumes<CSCGeometry, MuonGeometryRecord>();
19  segmentBuilder_ = new CSCSegmentBuilder(pas); // pass on the PS
20 
21  // register what this produces
22  produces<CSCSegmentCollection>();
23 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::EDGetTokenT< CSCRecHit2DCollection > m_token
CSCSegmentBuilder * segmentBuilder_
edm::ESGetToken< CSCGeometry, MuonGeometryRecord > m_cscGeometryToken

◆ ~CSCSegmentProducer()

CSCSegmentProducer::~CSCSegmentProducer ( )
override

Destructor.

Definition at line 25 of file CSCSegmentProducer.cc.

References iev, LogDebug, and segmentBuilder_.

25  {
26  LogDebug("CSCSegment|CSC") << "deleting CSCSegmentBuilder after " << iev << " events w/csc data.";
27  delete segmentBuilder_;
28 }
CSCSegmentBuilder * segmentBuilder_
#define LogDebug(id)

Member Function Documentation

◆ produce()

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

Produce the CSCSegment collection.

Definition at line 30 of file CSCSegmentProducer.cc.

References CSCSegmentBuilder::build(), makeMEIFBenchmarkPlots::ev, h, iev, LogDebug, m_cscGeometryToken, m_token, eostools::move(), edm::Handle< T >::product(), segmentBuilder_, CSCSegmentBuilder::setGeometry(), and singleTopDQM_cfi::setup.

30  {
31  LogDebug("CSCSegment|CSC") << "start producing segments for " << ++iev << "th event with csc data";
32 
33  // find the geometry (& conditions?) for this event & cache it in the builder
34 
36  const CSCGeometry* pgeom = &*h;
38 
39  // get the collection of CSCRecHit2D
41  ev.getByToken(m_token, cscRecHits);
42 
43  // create empty collection of Segments
44  auto oc = std::make_unique<CSCSegmentCollection>();
45 
46  // fill the collection
47  segmentBuilder_->build(cscRecHits.product(), *oc); //@@ FILL oc
48 
49  // put collection in event
50  ev.put(std::move(oc));
51 }
void build(const CSCRecHit2DCollection *rechits, CSCSegmentCollection &oc)
T const * product() const
Definition: Handle.h:70
edm::EDGetTokenT< CSCRecHit2DCollection > m_token
CSCSegmentBuilder * segmentBuilder_
edm::ESGetToken< CSCGeometry, MuonGeometryRecord > m_cscGeometryToken
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
void setGeometry(const CSCGeometry *geom)
def move(src, dest)
Definition: eostools.py:511
#define LogDebug(id)

Member Data Documentation

◆ iev

int CSCSegmentProducer::iev
private

Definition at line 32 of file CSCSegmentProducer.h.

Referenced by produce(), and ~CSCSegmentProducer().

◆ m_cscGeometryToken

edm::ESGetToken<CSCGeometry, MuonGeometryRecord> CSCSegmentProducer::m_cscGeometryToken
private

Definition at line 35 of file CSCSegmentProducer.h.

Referenced by CSCSegmentProducer(), and produce().

◆ m_token

edm::EDGetTokenT<CSCRecHit2DCollection> CSCSegmentProducer::m_token
private

Definition at line 34 of file CSCSegmentProducer.h.

Referenced by CSCSegmentProducer(), and produce().

◆ segmentBuilder_

CSCSegmentBuilder* CSCSegmentProducer::segmentBuilder_
private

Definition at line 33 of file CSCSegmentProducer.h.

Referenced by CSCSegmentProducer(), produce(), and ~CSCSegmentProducer().