CMS 3D CMS Logo

L1TMuonEndCapTrackProducer.cc
Go to the documentation of this file.
2 
3 
5  track_finder_(new TrackFinder(iConfig, consumesCollector())),
6  uGMT_converter_(new MicroGMTConverter()),
7  config_(iConfig)
8 {
9  // Make output products
10  // produces<l1t::CPPFDigiCollection> (""); // CPPF Digis emulated by EMTF using RPCDigis from Legacy RPC PAC
11  produces<EMTFHitCollection> (""); // All CSC LCTs and RPC clusters received by EMTF
12  produces<EMTFTrackCollection> (""); // All output EMTF tracks, in same format as unpacked data
13  produces<l1t::RegionalMuonCandBxCollection>("EMTF"); // EMTF tracks output to uGMT
14 }
15 
17 
18 }
19 
21  // Create pointers to output products
22  // auto out_cppfs = std::make_unique<l1t::CPPFDigiCollection>();
23  auto out_hits_tmp = std::make_unique<EMTFHitCollection>();
24  auto out_hits_ZS = std::make_unique<EMTFHitCollection>();
25  auto out_tracks = std::make_unique<EMTFTrackCollection>();
26  auto out_cands = std::make_unique<l1t::RegionalMuonCandBxCollection>();
27 
28  // Main EMTF emulator process, produces tracks from hits in each sector in each event
29  track_finder_->process(iEvent, iSetup, *out_hits_tmp, *out_tracks);
30 
31  // Apply ZeroSuppression: Only save RPC hits if there is at least one CSC LCT in the sector
32  bool has_LCT[12] = {false};
33  for (int iSect = 0; iSect < 12; iSect++) {
34  for (const auto& h : *out_hits_tmp) {
35  if (h.Is_CSC() && h.Sector_idx() == iSect) {
36  has_LCT[iSect] = true; break;
37  }
38  }
39  }
40  for (const auto& h : *out_hits_tmp) {
41  if (has_LCT[h.Sector_idx()] || h.Is_RPC() == 0) {
42  out_hits_ZS->push_back( h );
43  }
44  }
45 
46  // // Fill collection of emulated CPPFDigis
47  // for (const auto& h : *out_hits_ZS) {
48  // if (h.Is_RPC()) out_cppfs->push_back( h.CreateCPPFDigi() );
49  // }
50 
51  // Convert into uGMT format
52  uGMT_converter_->convert_all(iEvent, *out_tracks, *out_cands);
53 
54  // Fill the output products
55  // iEvent.put(std::move(out_cppfs), "");
56  iEvent.put(std::move(out_hits_ZS), "");
57  iEvent.put(std::move(out_tracks), "");
58  iEvent.put(std::move(out_cands), "EMTF");
59 }
60 
61 // void L1TMuonEndCapTrackProducer::beginJob() {
62 // }
63 
64 // void L1TMuonEndCapTrackProducer::endJob() {
65 // }
66 
67 // Fill 'descriptions' with the allowed parameters
69  // The following says we do not know what parameters are allowed so do no validation
70  // Please change this to state exactly what you do use, even if it is no parameters
72  desc.setUnknown();
73  descriptions.addDefault(desc);
74 }
75 
76 // Define this as a plug-in
L1TMuonEndCapTrackProducer(const edm::ParameterSet &)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
std::unique_ptr< MicroGMTConverter > uGMT_converter_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void addDefault(ParameterSetDescription const &psetDescription)
std::unique_ptr< TrackFinder > track_finder_
void produce(edm::Event &, const edm::EventSetup &) override
def move(src, dest)
Definition: eostools.py:511