CMS 3D CMS Logo

CSCTriggerPrimitivesProducer.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Class: CSCTriggerPrimitivesProducer
4 //
5 // Description: Steering routine of the local Level-1 Cathode Strip Chamber
6 // trigger.
7 //
8 // Author List: S. Valuev, UCLA.
9 //
10 //
11 // Modifications:
12 //
13 //--------------------------------------------------
14 
17 
21 
25 
31 
32 // Configuration via EventSetup
35 
36 
38 {
39  config_ = conf;
40 
41  // if false, parameters will be read in from DB using EventSetup mechanism
42  // else will use all parameters from the config file
43  debugParameters_ = conf.getParameter<bool>("debugParameters");
44 
45  wireDigiProducer_ = conf.getParameter<edm::InputTag>("CSCWireDigiProducer");
46  compDigiProducer_ = conf.getParameter<edm::InputTag>("CSCComparatorDigiProducer");
47  gemPadDigiProducer_ = conf.existsAs<edm::InputTag>("GEMPadDigiProducer")?conf.getParameter<edm::InputTag>("GEMPadDigiProducer"):edm::InputTag("");
48  checkBadChambers_ = conf.getParameter<bool>("checkBadChambers");
49 
50  // check whether you need to run the integrated local triggers
51  const edm::ParameterSet commonParam(conf.getParameter<edm::ParameterSet>("commonParam"));
52  runME11ILT_ = commonParam.existsAs<bool>("runME11ILT")?commonParam.getParameter<bool>("runME11ILT"):false;
53  runME21ILT_ = commonParam.existsAs<bool>("runME21ILT")?commonParam.getParameter<bool>("runME21ILT"):false;
54 
55  wire_token_ = consumes<CSCWireDigiCollection>(wireDigiProducer_);
56  comp_token_ = consumes<CSCComparatorDigiCollection>(compDigiProducer_);
57  gem_pad_token_ = consumes<GEMPadDigiCollection>(gemPadDigiProducer_);
58  gem_pad_cluster_token_ = consumes<GEMPadDigiClusterCollection>(gemPadDigiClusterProducer_);
59 
60  // register what this produces
61  produces<CSCALCTDigiCollection>();
62  produces<CSCCLCTDigiCollection>();
63  produces<CSCCLCTPreTriggerDigiCollection>();
64  produces<CSCCLCTPreTriggerCollection>();
65  produces<CSCCorrelatedLCTDigiCollection>();
66  produces<CSCCorrelatedLCTDigiCollection>("MPCSORTED");
68  produces<GEMCoPadDigiCollection>();
69 }
70 
72 {
73 }
74 
76 {
77  // Remark: access builder using "streamCache(iID)"
78 
79  // get the csc geometry
81  setup.get<MuonGeometryRecord>().get(h);
82  streamCache(iID)->setCSCGeometry(&*h);
83 
84  // get the gem geometry if it's there
86  setup.get<MuonGeometryRecord>().get(h_gem);
87  if (h_gem.isValid()) {
88  streamCache(iID)->setGEMGeometry(&*h_gem);
89  } else {
90  edm::LogInfo("L1CSCTPEmulatorNoGEMGeometry")
91  << "+++ Info: GEM geometry is unavailable. Running CSC-only trigger algorithm. +++\n";
92  }
93 
94  // Find conditions data for bad chambers.
95  edm::ESHandle<CSCBadChambers> pBadChambers;
96  setup.get<CSCBadChambersRcd>().get(pBadChambers);
97 
98  // If !debugParameters then get config parameters using EventSetup mechanism.
99  // This must be done in produce() for every event and not in beginJob()
100  // (see mail from Jim Brooke sent to hn-cms-L1TrigEmulator on July 30, 2007).
101  if (!debugParameters_) {
103  setup.get<CSCDBL1TPParametersRcd>().get(conf);
104  if (conf.product() == nullptr) {
105  edm::LogError("L1CSCTPEmulatorConfigError")
106  << "+++ Failed to find a CSCDBL1TPParametersRcd in EventSetup! +++\n"
107  << "+++ Cannot continue emulation without these parameters +++\n";
108  return;
109  }
110  streamCache(iID)->setConfigParameters(conf.product());
111  }
112 
113  // Get the collections of comparator & wire digis from event.
116  ev.getByToken(comp_token_, compDigis);
117  ev.getByToken(wire_token_, wireDigis);
118 
119  // input GEM pad collection for upgrade scenarios
120  const GEMPadDigiCollection *gemPads = nullptr;
121  if (!gemPadDigiProducer_.label().empty()) {
123  ev.getByToken(gem_pad_token_, gemPadDigis);
124  gemPads = gemPadDigis.product();
125  }
126 
127  // input GEM pad cluster collection for upgrade scenarios
128  const GEMPadDigiClusterCollection *gemPadClusters = nullptr;
129  if (!gemPadDigiClusterProducer_.label().empty()) {
130  edm::Handle<GEMPadDigiClusterCollection> gemPadDigiClusters;
131  ev.getByToken(gem_pad_cluster_token_, gemPadDigiClusters);
132  gemPadClusters = gemPadDigiClusters.product();
133  }
134 
135  // Create empty collections of ALCTs, CLCTs, and correlated LCTs upstream
136  // and downstream of MPC.
137  std::unique_ptr<CSCALCTDigiCollection> oc_alct(new CSCALCTDigiCollection);
138  std::unique_ptr<CSCCLCTDigiCollection> oc_clct(new CSCCLCTDigiCollection);
139  std::unique_ptr<CSCCLCTPreTriggerDigiCollection> oc_clctpretrigger(new CSCCLCTPreTriggerDigiCollection);
140  std::unique_ptr<CSCCLCTPreTriggerCollection> oc_pretrig(new CSCCLCTPreTriggerCollection);
141  std::unique_ptr<CSCCorrelatedLCTDigiCollection> oc_lct(new CSCCorrelatedLCTDigiCollection);
142  std::unique_ptr<CSCCorrelatedLCTDigiCollection> oc_sorted_lct(new CSCCorrelatedLCTDigiCollection);
143  std::unique_ptr<GEMCoPadDigiCollection> oc_gemcopad(new GEMCoPadDigiCollection);
144 
145  if (!wireDigis.isValid()) {
146  edm::LogWarning("L1CSCTPEmulatorNoInputCollection")
147  << "+++ Warning: Collection of wire digis with label "
149  << " requested in configuration, but not found in the event..."
150  << " Skipping production of CSC TP digis +++\n";
151  }
152  if (!compDigis.isValid()) {
153  edm::LogWarning("L1CSCTPEmulatorNoInputCollection")
154  << "+++ Warning: Collection of comparator digis with label "
156  << " requested in configuration, but not found in the event..."
157  << " Skipping production of CSC TP digis +++\n";
158  }
159  // Fill output collections if valid input collections are available.
160  if (wireDigis.isValid() && compDigis.isValid()) {
161  const CSCBadChambers* temp = checkBadChambers_ ? pBadChambers.product() : new CSCBadChambers;
162  streamCache(iID)->build(temp,
163  wireDigis.product(), compDigis.product(),
164  gemPads, gemPadClusters,
165  *oc_alct, *oc_clct,
166  *oc_clctpretrigger, *oc_pretrig,
167  *oc_lct, *oc_sorted_lct, *oc_gemcopad);
168  if (!checkBadChambers_)
169  delete temp;
170  }
171 
172  // Put collections in event.
173  ev.put(std::move(oc_alct));
174  ev.put(std::move(oc_clct));
175  ev.put(std::move(oc_clctpretrigger));
176  ev.put(std::move(oc_pretrig));
177  ev.put(std::move(oc_lct));
178  ev.put(std::move(oc_sorted_lct),"MPCSORTED");
179  // only put GEM copad collections in the event when the
180  // integrated local triggers are running
182  ev.put(std::move(oc_gemcopad));
183 }
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:186
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:1
bool ev
CSCTriggerPrimitivesProducer(const edm::ParameterSet &)
edm::EDGetTokenT< GEMPadDigiClusterCollection > gem_pad_cluster_token_
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
bool isValid() const
Definition: HandleBase.h:74
edm::EDGetTokenT< CSCComparatorDigiCollection > comp_token_
edm::EDGetTokenT< GEMPadDigiCollection > gem_pad_token_
T const * product() const
Definition: Handle.h:81
std::string const & label() const
Definition: InputTag.h:36
edm::EDGetTokenT< CSCWireDigiCollection > wire_token_
T get() const
Definition: EventSetup.h:63
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
bool isValid() const
Definition: ESHandle.h:47
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:510