CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalTrigPrimDigiProducer.cc
Go to the documentation of this file.
22 
23 #include <algorithm>
24 
26 :
27  theAlgo_(ps.getParameter<bool>("peakFilter"),
28  ps.getParameter<std::vector<double> >("weights"),
29  ps.getParameter<int>("latency"),
30  ps.getParameter<uint32_t>("FG_threshold"),
31  ps.getParameter<uint32_t>("ZS_threshold"),
32  ps.getParameter<int>("numberOfSamples"),
33  ps.getParameter<int>("numberOfPresamples"),
34  ps.getParameter<uint32_t>("MinSignalThreshold"),
35  ps.getParameter<uint32_t>("PMTNoiseThreshold")
36  ),
37  inputLabel_(ps.getParameter<std::vector<edm::InputTag> >("inputLabel")),
38  inputTagFEDRaw_(ps.getParameter<edm::InputTag> ("InputTagFEDRaw")),
39  runZS_(ps.getParameter<bool>("RunZS")),
40  runFrontEndFormatError_(ps.getParameter<bool>("FrontEndFormatError"))
41 {
42  // register for data access
44  tok_raw_ = consumes<FEDRawDataCollection>(inputTagFEDRaw_);
45  }
46  tok_hbhe_ = consumes<HBHEDigiCollection>(inputLabel_[0]);
47  tok_hf_ = consumes<HFDigiCollection>(inputLabel_[1]);
48 
49  produces<HcalTrigPrimDigiCollection>();
50  theAlgo_.setPeakFinderAlgorithm(ps.getParameter<int>("PeakFinderAlgorithm"));
51 }
52 
53 
55 
56  // Step A: get the conditions, for the decoding
57  edm::ESHandle<HcalTPGCoder> inputCoder;
58  eventSetup.get<HcalTPGRecord>().get(inputCoder);
59 
61  eventSetup.get<CaloTPGRecord>().get(outTranscoder);
62 
64  eventSetup.get<HcalLutMetadataRcd>().get(lutMetadata);
65  float rctlsb = lutMetadata->getRctLsb();
66 
68  eventSetup.get<CaloGeometryRecord>().get(pG);
69 
70  // Step B: Create empty output
71  std::auto_ptr<HcalTrigPrimDigiCollection> result(new HcalTrigPrimDigiCollection());
72 
75 
76  iEvent.getByToken(tok_hbhe_,hbheDigis);
77  iEvent.getByToken(tok_hf_,hfDigis);
78 
79  // protect here against missing input collections
80  // there is no protection in HcalTriggerPrimitiveAlgo
81 
82  if (!hbheDigis.isValid()) {
83  edm::LogInfo("HcalTrigPrimDigiProducer")
84  << "\nWarning: HBHEDigiCollection with input tag "
85  << inputLabel_[0]
86  << "\nrequested in configuration, but not found in the event."
87  << "\nQuit returning empty product." << std::endl;
88 
89  // put empty HcalTrigPrimDigiCollection in the event
90  iEvent.put(result);
91 
92  return;
93  }
94 
95  if (!hfDigis.isValid()) {
96  edm::LogInfo("HcalTrigPrimDigiProducer")
97  << "\nWarning: HFDigiCollection with input tag "
98  << inputLabel_[1]
99  << "\nrequested in configuration, but not found in the event."
100  << "\nQuit returning empty product." << std::endl;
101 
102  // put empty HcalTrigPrimDigiCollection in the event
103  iEvent.put(result);
104 
105  return;
106  }
107 
108 
109  // Step C: Invoke the algorithm, passing in inputs and getting back outputs.
110  theAlgo_.run(inputCoder.product(),outTranscoder->getHcalCompressor().get(),
111  *hbheDigis, *hfDigis, *result, &(*pG), rctlsb);
112 
113  // Step C.1: Run FE Format Error / ZS for real data.
115 
117  eventSetup.get<HcalDbRecord> ().get(pSetup);
118  const HcalElectronicsMap *emap = pSetup->getHcalMapping();
119 
121  iEvent.getByToken(tok_raw_, fedHandle);
122 
123  if (fedHandle.isValid() && emap != 0) {
124  theAlgo_.runFEFormatError(fedHandle.product(), emap, *result);
125  } else {
126  edm::LogInfo("HcalTrigPrimDigiProducer")
127  << "\nWarning: FEDRawDataCollection with input tag "
128  << inputTagFEDRaw_
129  << "\nrequested in configuration, but not found in the event."
130  << "\nQuit returning empty product." << std::endl;
131 
132  // produce empty HcalTrigPrimDigiCollection and put it in the event
133  std::auto_ptr < HcalTrigPrimDigiCollection > emptyResult(
135 
136  iEvent.put(emptyResult);
137 
138  return;
139  }
140 
141  }
142 
143  if (runZS_) theAlgo_.runZS(*result);
144 
145  // edm::LogInfo("HcalTrigPrimDigiProducer") << "HcalTrigPrims: " << result->size();
146 
147  // Step D: Put outputs into event
148  iEvent.put(result);
149 }
150 
151 
T getParameter(std::string const &) const
edm::InputTag inputTagFEDRaw_
input tag for FEDRawDataCollection
void runFEFormatError(const FEDRawDataCollection *rawraw, const HcalElectronicsMap *emap, HcalTrigPrimDigiCollection &result)
HcalTrigPrimDigiProducer(const edm::ParameterSet &ps)
edm::SortedCollection< HcalTriggerPrimitiveDigi > HcalTrigPrimDigiCollection
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:449
HcalTriggerPrimitiveAlgo theAlgo_
void run(const HcalTPGCoder *incoder, const HcalTPGCompressor *outcoder, const HBHEDigiCollection &hbheDigis, const HFDigiCollection &hfDigis, HcalTrigPrimDigiCollection &result, const HcalTrigTowerGeometry *trigTowerGeometry, float rctlsb)
edm::EDGetTokenT< HFDigiCollection > tok_hf_
int iEvent
Definition: GenABIO.cc:230
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
tuple result
Definition: query.py:137
bool isValid() const
Definition: HandleBase.h:75
void runZS(HcalTrigPrimDigiCollection &tp)
T const * product() const
Definition: Handle.h:81
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:86
virtual void produce(edm::Event &e, const edm::EventSetup &c)
edm::EDGetTokenT< FEDRawDataCollection > tok_raw_
std::vector< edm::InputTag > inputLabel_
input tags for HCAL digis
edm::EDGetTokenT< HBHEDigiCollection > tok_hbhe_