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 Attributes
CSCTriggerPrimitivesProducer Class Reference

#include <CSCTriggerPrimitivesProducer.h>

Inheritance diagram for CSCTriggerPrimitivesProducer:
edm::one::EDProducer< edm::one::SharedResources > edm::one::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 CSCTriggerPrimitivesProducer (const edm::ParameterSet &)
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 ~CSCTriggerPrimitivesProducer ()
 
- Public Member Functions inherited from edm::one::EDProducer< edm::one::SharedResources >
 EDProducer ()=default
 
- Public Member Functions inherited from edm::one::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

bool checkBadChambers_
 
edm::EDGetTokenT
< CSCComparatorDigiCollection
comp_token_
 
edm::InputTag compDigiProducer_
 
bool debugParameters_
 
int iev
 
CSCTriggerPrimitivesBuilderlctBuilder_
 
edm::EDGetTokenT
< CSCWireDigiCollection
wire_token_
 
edm::InputTag wireDigiProducer_
 

Additional Inherited Members

- Public Types inherited from edm::one::EDProducerBase
typedef EDProducerBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::one::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Implementation of the local Level-1 Cathode Strip Chamber trigger. Simulates functionalities of the anode and cathode Local Charged Tracks (LCT) processors, of the Trigger Mother Board (TMB), and of the Muon Port Card (MPC).

Input to the simulation are collections of the CSC wire and comparator digis.

Produces four collections of the Level-1 CSC Trigger Primitives (track stubs, or LCTs): anode LCTs (ALCTs), cathode LCTs (CLCTs), correlated LCTs at TMB, and correlated LCTs at MPC.

Author
Slava Valuev, UCLA.

Definition at line 34 of file CSCTriggerPrimitivesProducer.h.

Constructor & Destructor Documentation

CSCTriggerPrimitivesProducer::CSCTriggerPrimitivesProducer ( const edm::ParameterSet conf)
explicit

Definition at line 37 of file CSCTriggerPrimitivesProducer.cc.

References checkBadChambers_, comp_token_, compDigiProducer_, debugParameters_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), lctBuilder_, wire_token_, and wireDigiProducer_.

37  : iev(0) {
38 
39  // if false, parameters will be read in from DB using EventSetup mechanism
40  // else will use all parameters from the config file
41  debugParameters_ = conf.getUntrackedParameter<bool>("debugParameters",false);
42 
43  wireDigiProducer_ = conf.getParameter<edm::InputTag>("CSCWireDigiProducer");
44  compDigiProducer_ = conf.getParameter<edm::InputTag>("CSCComparatorDigiProducer");
45  checkBadChambers_ = conf.getUntrackedParameter<bool>("checkBadChambers", true);
46 
47  lctBuilder_ = new CSCTriggerPrimitivesBuilder(conf); // pass on the conf
48 
49  wire_token_ = consumes<CSCWireDigiCollection>(wireDigiProducer_);
50  comp_token_ = consumes<CSCComparatorDigiCollection>(compDigiProducer_);
51 
52  // register what this produces
53  produces<CSCALCTDigiCollection>();
54  produces<CSCCLCTDigiCollection>();
55  produces<CSCCLCTPreTriggerCollection>();
56  produces<CSCCorrelatedLCTDigiCollection>();
57  produces<CSCCorrelatedLCTDigiCollection>("MPCSORTED");
58  usesResource("CSCTriggerGeometry");
59  consumes<CSCComparatorDigiCollection>(compDigiProducer_);
60  consumes<CSCWireDigiCollection>(wireDigiProducer_);
61 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< CSCComparatorDigiCollection > comp_token_
CSCTriggerPrimitivesBuilder * lctBuilder_
edm::EDGetTokenT< CSCWireDigiCollection > wire_token_
CSCTriggerPrimitivesProducer::~CSCTriggerPrimitivesProducer ( )

Definition at line 63 of file CSCTriggerPrimitivesProducer.cc.

References iev, lctBuilder_, and LogDebug.

63  {
64  LogDebug("L1CSCTrigger")
65  << "deleting trigger primitives after " << iev << " events.";
66  delete lctBuilder_;
67 }
#define LogDebug(id)
CSCTriggerPrimitivesBuilder * lctBuilder_

Member Function Documentation

void CSCTriggerPrimitivesProducer::produce ( edm::Event ev,
const edm::EventSetup setup 
)
virtual

Implements edm::one::EDProducerBase.

Definition at line 72 of file CSCTriggerPrimitivesProducer.cc.

References CSCTriggerPrimitivesBuilder::build(), checkBadChambers_, comp_token_, compDigiProducer_, dbtoconf::conf, debugParameters_, edm::EventSetup::get(), edm::Event::getByToken(), h, iev, edm::HandleBase::isValid(), edm::InputTag::label(), lctBuilder_, LogDebug, edm::Handle< T >::product(), edm::ESHandle< class >::product(), edm::Event::put(), CSCTriggerPrimitivesBuilder::setConfigParameters(), CSCTriggerGeometry::setGeometry(), groupFilesInBlocks::temp, wire_token_, and wireDigiProducer_.

73  {
74 
75  LogDebug("L1CSCTrigger") << "start producing LCTs for event " << ++iev;
76 
77  // Find the geometry (& conditions?) for this event & cache it in
78  // CSCTriggerGeometry.
79  {
81  setup.get<MuonGeometryRecord>().get(h);
83  }
84 
85  // Find conditions data for bad chambers.
86  edm::ESHandle<CSCBadChambers> pBadChambers;
87  setup.get<CSCBadChambersRcd>().get(pBadChambers);
88 
89  // If !debugParameters then get config parameters using EventSetup mechanism.
90  // This must be done in produce() for every event and not in beginJob()
91  // (see mail from Jim Brooke sent to hn-cms-L1TrigEmulator on July 30, 2007).
92  if (!debugParameters_) {
94  setup.get<CSCDBL1TPParametersRcd>().get(conf);
95  if (conf.product() == 0) {
96  edm::LogError("L1CSCTPEmulatorConfigError")
97  << "+++ Failed to find a CSCDBL1TPParametersRcd in EventSetup! +++\n"
98  << "+++ Cannot continue emulation without these parameters +++\n";
99  return;
100  }
102  }
103 
104  // Get the collections of comparator & wire digis from event.
107  // ev.getByLabel(compDigiProducer_.label(), compDigiProducer_.instance(), compDigis);
108  // ev.getByLabel(wireDigiProducer_.label(), wireDigiProducer_.instance(), wireDigis);
109  ev.getByToken(comp_token_, compDigis);
110  ev.getByToken(wire_token_, wireDigis);
111 
112  // Create empty collections of ALCTs, CLCTs, and correlated LCTs upstream
113  // and downstream of MPC.
114  std::auto_ptr<CSCALCTDigiCollection> oc_alct(new CSCALCTDigiCollection);
115  std::auto_ptr<CSCCLCTDigiCollection> oc_clct(new CSCCLCTDigiCollection);
116  std::auto_ptr<CSCCLCTPreTriggerCollection> oc_pretrig(new CSCCLCTPreTriggerCollection);
117  std::auto_ptr<CSCCorrelatedLCTDigiCollection> oc_lct(new CSCCorrelatedLCTDigiCollection);
118  std::auto_ptr<CSCCorrelatedLCTDigiCollection> oc_sorted_lct(new CSCCorrelatedLCTDigiCollection);
119 
120  if (!wireDigis.isValid()) {
121  edm::LogWarning("L1CSCTPEmulatorNoInputCollection")
122  << "+++ Warning: Collection of wire digis with label "
124  << " requested in configuration, but not found in the event..."
125  << " Skipping production of CSC TP digis +++\n";
126  }
127  if (!compDigis.isValid()) {
128  edm::LogWarning("L1CSCTPEmulatorNoInputCollection")
129  << "+++ Warning: Collection of comparator digis with label "
131  << " requested in configuration, but not found in the event..."
132  << " Skipping production of CSC TP digis +++\n";
133  }
134  // Fill output collections if valid input collections are available.
135  if (wireDigis.isValid() && compDigis.isValid()) {
136  const CSCBadChambers* temp = checkBadChambers_ ? pBadChambers.product() : new CSCBadChambers;
137  lctBuilder_->build(temp,
138  wireDigis.product(), compDigis.product(),
139  *oc_alct, *oc_clct, *oc_pretrig, *oc_lct, *oc_sorted_lct);
140  if (!checkBadChambers_)
141  delete temp;
142  }
143 
144  // Put collections in event.
145  ev.put(oc_alct);
146  ev.put(oc_clct);
147  ev.put(oc_pretrig);
148  ev.put(oc_lct);
149  ev.put(oc_sorted_lct,"MPCSORTED");
150 }
#define LogDebug(id)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:446
void build(const CSCBadChambers *badChambers, const CSCWireDigiCollection *wiredc, const CSCComparatorDigiCollection *compdc, CSCALCTDigiCollection &oc_alct, CSCCLCTDigiCollection &oc_clct, CSCCLCTPreTriggerCollection &oc_pretrig, CSCCorrelatedLCTDigiCollection &oc_lct, CSCCorrelatedLCTDigiCollection &oc_sorted_lct)
static void setGeometry(const edm::ESHandle< CSCGeometry > &thegeom)
void setConfigParameters(const CSCDBL1TPParameters *conf)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
bool isValid() const
Definition: HandleBase.h:76
edm::EDGetTokenT< CSCComparatorDigiCollection > comp_token_
tuple conf
Definition: dbtoconf.py:185
T const * product() const
Definition: Handle.h:81
CSCTriggerPrimitivesBuilder * lctBuilder_
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:86
std::string const & label() const
Definition: InputTag.h:42
edm::EDGetTokenT< CSCWireDigiCollection > wire_token_

Member Data Documentation

bool CSCTriggerPrimitivesProducer::checkBadChambers_
private

Definition at line 54 of file CSCTriggerPrimitivesProducer.h.

Referenced by CSCTriggerPrimitivesProducer(), and produce().

edm::EDGetTokenT<CSCComparatorDigiCollection> CSCTriggerPrimitivesProducer::comp_token_
private

Definition at line 48 of file CSCTriggerPrimitivesProducer.h.

Referenced by CSCTriggerPrimitivesProducer(), and produce().

edm::InputTag CSCTriggerPrimitivesProducer::compDigiProducer_
private

Definition at line 46 of file CSCTriggerPrimitivesProducer.h.

Referenced by CSCTriggerPrimitivesProducer(), and produce().

bool CSCTriggerPrimitivesProducer::debugParameters_
private

Definition at line 52 of file CSCTriggerPrimitivesProducer.h.

Referenced by CSCTriggerPrimitivesProducer(), and produce().

int CSCTriggerPrimitivesProducer::iev
private

Definition at line 44 of file CSCTriggerPrimitivesProducer.h.

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

CSCTriggerPrimitivesBuilder* CSCTriggerPrimitivesProducer::lctBuilder_
private
edm::EDGetTokenT<CSCWireDigiCollection> CSCTriggerPrimitivesProducer::wire_token_
private

Definition at line 49 of file CSCTriggerPrimitivesProducer.h.

Referenced by CSCTriggerPrimitivesProducer(), and produce().

edm::InputTag CSCTriggerPrimitivesProducer::wireDigiProducer_
private

Definition at line 47 of file CSCTriggerPrimitivesProducer.h.

Referenced by CSCTriggerPrimitivesProducer(), and produce().