CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1RCTInputProducer.cc
Go to the documentation of this file.
2 
5 
10 
13 
16 
19 
22 
23 #include <vector>
24 using std::vector;
25 
26 #include <iostream>
27 using std::cout;
28 using std::endl;
29 
31  : rctLookupTables(new L1RCTLookupTables),
32  rct(new L1RCT(rctLookupTables)),
33  useEcal(conf.getParameter<bool>("useEcal")),
34  useHcal(conf.getParameter<bool>("useHcal")),
35  ecalDigisLabel(conf.getParameter<edm::InputTag>("ecalDigisLabel")),
36  hcalDigisLabel(conf.getParameter<edm::InputTag>("hcalDigisLabel")) {
37  produces<std::vector<unsigned short>>("rctCrate");
38  produces<std::vector<unsigned short>>("rctCard");
39  produces<std::vector<unsigned short>>("rctTower");
40  produces<std::vector<unsigned int>>("rctEGammaET");
41  produces<std::vector<bool>>("rctHoEFGVetoBit");
42  produces<std::vector<unsigned int>>("rctJetMETET");
43  produces<std::vector<bool>>("rctTowerActivityBit");
44  produces<std::vector<bool>>("rctTowerMIPBit");
45  produces<std::vector<unsigned short>>("rctHFCrate");
46  produces<std::vector<unsigned short>>("rctHFRegion");
47  produces<std::vector<unsigned int>>("rctHFET");
48  produces<std::vector<bool>>("rctHFFG");
49 }
50 
52  if (rct != nullptr)
53  delete rct;
54  if (rctLookupTables != nullptr)
55  delete rctLookupTables;
56 }
57 
59  // Refresh configuration information every event
60  // Hopefully, this does not take too much time
61  // There should be a call back function in future to
62  // handle changes in configuration
63 
64  edm::ESHandle<L1RCTParameters> rctParameters;
65  eventSetup.get<L1RCTParametersRcd>().get(rctParameters);
66  const L1RCTParameters *r = rctParameters.product();
68  eventSetup.get<L1RCTChannelMaskRcd>().get(channelMask);
69  const L1RCTChannelMask *c = channelMask.product();
71  eventSetup.get<L1CaloEcalScaleRcd>().get(ecalScale);
72  const L1CaloEcalScale *e = ecalScale.product();
74  eventSetup.get<L1CaloHcalScaleRcd>().get(hcalScale);
75  const L1CaloHcalScale *h = hcalScale.product();
77  eventSetup.get<L1EmEtScaleRcd>().get(emScale);
78  const L1CaloEtScale *s = emScale.product();
79 
85 
88 
89  if (useEcal) {
90  event.getByLabel(ecalDigisLabel, ecal);
91  }
92  if (useHcal) {
93  event.getByLabel(hcalDigisLabel, hcal);
94  }
95 
98  if (ecal.isValid()) {
99  ecalColl = *ecal;
100  }
101  if (hcal.isValid()) {
102  hcalColl = *hcal;
103  }
104 
105  rct->digiInput(ecalColl, hcalColl);
106 
107  // Stuff to create
108 
109  std::unique_ptr<std::vector<unsigned short>> rctCrate(new std::vector<unsigned short>);
110  std::unique_ptr<std::vector<unsigned short>> rctCard(new std::vector<unsigned short>);
111  std::unique_ptr<std::vector<unsigned short>> rctTower(new std::vector<unsigned short>);
112  std::unique_ptr<std::vector<unsigned int>> rctEGammaET(new std::vector<unsigned int>);
113  std::unique_ptr<std::vector<bool>> rctHoEFGVetoBit(new std::vector<bool>);
114  std::unique_ptr<std::vector<unsigned int>> rctJetMETET(new std::vector<unsigned int>);
115  std::unique_ptr<std::vector<bool>> rctTowerActivityBit(new std::vector<bool>);
116  std::unique_ptr<std::vector<bool>> rctTowerMIPBit(new std::vector<bool>);
117 
118  for (int crate = 0; crate < 18; crate++) {
119  for (int card = 0; card < 7; card++) {
120  for (int tower = 0; tower < 32; tower++) {
121  unsigned short ecalCompressedET = rct->ecalCompressedET(crate, card, tower);
122  unsigned short ecalFineGrainBit = rct->ecalFineGrainBit(crate, card, tower);
123  unsigned short hcalCompressedET = rct->hcalCompressedET(crate, card, tower);
124  unsigned int lutBits =
125  rctLookupTables->lookup(ecalCompressedET, hcalCompressedET, ecalFineGrainBit, crate, card, tower);
126  unsigned int eGammaETCode = lutBits & 0x0000007F;
127  bool hOeFGVetoBit = (lutBits >> 7) & 0x00000001;
128  unsigned int jetMETETCode = (lutBits >> 8) & 0x000001FF;
129  bool activityBit = (lutBits >> 17) & 0x00000001;
130  if (eGammaETCode > 0 || jetMETETCode > 0 || hOeFGVetoBit || activityBit) {
131  rctCrate->push_back(crate);
132  rctCard->push_back(card);
133  rctTower->push_back(tower);
134  rctEGammaET->push_back(eGammaETCode);
135  rctHoEFGVetoBit->push_back(hOeFGVetoBit);
136  rctJetMETET->push_back(jetMETETCode);
137  rctTowerActivityBit->push_back(activityBit);
138  rctTowerMIPBit->push_back(false); // FIXME: MIP bit is not yet defined
139  }
140  }
141  }
142  }
143 
144  std::unique_ptr<std::vector<unsigned short>> rctHFCrate(new std::vector<unsigned short>);
145  std::unique_ptr<std::vector<unsigned short>> rctHFRegion(new std::vector<unsigned short>);
146  std::unique_ptr<std::vector<unsigned int>> rctHFET(new std::vector<unsigned int>);
147  std::unique_ptr<std::vector<bool>> rctHFFG(new std::vector<bool>);
148  for (int crate = 0; crate < 18; crate++) {
149  for (int hfRegion = 0; hfRegion < 8; hfRegion++) {
150  unsigned short hfCompressedET = rct->hfCompressedET(crate, hfRegion);
151  unsigned int hfETCode = rctLookupTables->lookup(hfCompressedET, crate, 999, hfRegion);
152  if (hfETCode > 0) {
153  rctHFCrate->push_back(crate);
154  rctHFRegion->push_back(hfRegion);
155  rctHFET->push_back(hfETCode);
156  rctHFFG->push_back(false); // FIXME: HF FG is not yet defined
157  }
158  }
159  }
160 
161  // putting stuff back into event
162  event.put(std::move(rctCrate), "rctCrate");
163  event.put(std::move(rctCard), "rctCard");
164  event.put(std::move(rctTower), "rctTower");
165  event.put(std::move(rctEGammaET), "rctEGammaET");
166  event.put(std::move(rctHoEFGVetoBit), "rctHoEFGVetoBit");
167  event.put(std::move(rctJetMETET), "rctJetMETET");
168  event.put(std::move(rctTowerActivityBit), "rctTowerActivityBit");
169  event.put(std::move(rctTowerMIPBit), "rctTowerMIPBit");
170  event.put(std::move(rctHFCrate), "rctHFCrate");
171  event.put(std::move(rctHFRegion), "rctHFRegion");
172  event.put(std::move(rctHFET), "rctHFET");
173  event.put(std::move(rctHFFG), "rctHFFG");
174 }
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
void produce(edm::Event &e, const edm::EventSetup &c) override
unsigned short hcalCompressedET(int crate, int card, int tower)
Definition: L1RCT.h:65
unsigned short hfCompressedET(int crate, int tower)
Definition: L1RCT.h:71
edm::InputTag ecalDigisLabel
L1RCTInputProducer(const edm::ParameterSet &ps)
void setHcalScale(const L1CaloHcalScale *hcalScale)
~L1RCTInputProducer() override
unsigned short ecalFineGrainBit(int crate, int card, int tower)
Definition: L1RCT.h:64
unsigned short ecalCompressedET(int crate, int card, int tower)
Definition: L1RCT.h:63
bool isValid() const
Definition: HandleBase.h:70
void setL1CaloEtScale(const L1CaloEtScale *etScale)
edm::InputTag hcalDigisLabel
void setEcalScale(const L1CaloEcalScale *ecalScale)
void setRCTParameters(const L1RCTParameters *rctParameters)
HLT enums.
void digiInput(const EcalTrigPrimDigiCollection &ecalCollection, const HcalTrigPrimDigiCollection &hcalCollection)
Definition: L1RCT.cc:109
T get() const
Definition: EventSetup.h:73
L1RCTLookupTables * rctLookupTables
Definition: L1RCT.h:20
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:511
void setChannelMask(const L1RCTChannelMask *channelMask)
Definition: event.py:1
unsigned int lookup(unsigned short ecalInput, unsigned short hcalInput, unsigned short fgbit, unsigned short crtNo, unsigned short crdNo, unsigned short twrNo) const