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
43  tok_raw_ = consumes<FEDRawDataCollection>(inputTagFEDRaw_);
44  tok_hbhe_ = consumes<HBHEDigiCollection>(inputLabel_[0]);
45  tok_hf_ = consumes<HFDigiCollection>(inputLabel_[1]);
46 
47  produces<HcalTrigPrimDigiCollection>();
48  theAlgo_.setPeakFinderAlgorithm(ps.getParameter<int>("PeakFinderAlgorithm"));
49 }
50 
51 
53 
54  // Step A: get the conditions, for the decoding
55  edm::ESHandle<HcalTPGCoder> inputCoder;
56  eventSetup.get<HcalTPGRecord>().get(inputCoder);
57 
59  eventSetup.get<CaloTPGRecord>().get(outTranscoder);
60  outTranscoder->setup(eventSetup,CaloTPGTranscoder::HcalTPG);
61 
63  eventSetup.get<HcalLutMetadataRcd>().get(lutMetadata);
64  float rctlsb = lutMetadata->getRctLsb();
65 
67  eventSetup.get<CaloGeometryRecord>().get(pG);
68 
69  // Step B: Create empty output
70  std::auto_ptr<HcalTrigPrimDigiCollection> result(new HcalTrigPrimDigiCollection());
71 
74 
75  iEvent.getByToken(tok_hbhe_,hbheDigis);
76  iEvent.getByToken(tok_hf_,hfDigis);
77 
78  // protect here against missing input collections
79  // there is no protection in HcalTriggerPrimitiveAlgo
80 
81  if (!hbheDigis.isValid()) {
82  edm::LogInfo("HcalTrigPrimDigiProducer")
83  << "\nWarning: HBHEDigiCollection with input tag "
84  << inputLabel_[0]
85  << "\nrequested in configuration, but not found in the event."
86  << "\nQuit returning empty product." << std::endl;
87 
88  // put empty HcalTrigPrimDigiCollection in the event
89  iEvent.put(result);
90 
91  outTranscoder->releaseSetup();
92 
93  return;
94  }
95 
96  if (!hfDigis.isValid()) {
97  edm::LogInfo("HcalTrigPrimDigiProducer")
98  << "\nWarning: HFDigiCollection with input tag "
99  << inputLabel_[1]
100  << "\nrequested in configuration, but not found in the event."
101  << "\nQuit returning empty product." << std::endl;
102 
103  // put empty HcalTrigPrimDigiCollection in the event
104  iEvent.put(result);
105 
106  outTranscoder->releaseSetup();
107 
108  return;
109  }
110 
111 
112  // Step C: Invoke the algorithm, passing in inputs and getting back outputs.
113  theAlgo_.run(inputCoder.product(),outTranscoder->getHcalCompressor().get(),
114  *hbheDigis, *hfDigis, *result, &(*pG), rctlsb);
115 
116  // Step C.1: Run FE Format Error / ZS for real data.
118 
120  eventSetup.get<HcalDbRecord> ().get(pSetup);
121  const HcalElectronicsMap *emap = pSetup->getHcalMapping();
122 
124  iEvent.getByToken(tok_raw_, fedHandle);
125 
126  if (fedHandle.isValid() && emap != 0) {
127  theAlgo_.runFEFormatError(fedHandle.product(), emap, *result);
128  } else {
129  edm::LogInfo("HcalTrigPrimDigiProducer")
130  << "\nWarning: FEDRawDataCollection with input tag "
131  << inputTagFEDRaw_
132  << "\nrequested in configuration, but not found in the event."
133  << "\nQuit returning empty product." << std::endl;
134 
135  // produce empty HcalTrigPrimDigiCollection and put it in the event
136  std::auto_ptr < HcalTrigPrimDigiCollection > emptyResult(
138 
139  iEvent.put(emptyResult);
140 
141  outTranscoder->releaseSetup();
142 
143  return;
144  }
145 
146  }
147 
148  if (runZS_) theAlgo_.runZS(*result);
149 
150  // edm::LogInfo("HcalTrigPrimDigiProducer") << "HcalTrigPrims: " << result->size();
151 
152  // Step D: Put outputs into event
153  iEvent.put(result);
154 
155  outTranscoder->releaseSetup();
156 }
157 
158 
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:434
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:116
tuple result
Definition: query.py:137
bool isValid() const
Definition: HandleBase.h:76
void runZS(HcalTrigPrimDigiCollection &tp)
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
T const * product() const
Definition: Handle.h:81
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_