CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalSignalGenerator.h
Go to the documentation of this file.
1 #ifndef HcalSimAlgos_HcalSignalGenerator_h
2 #define HcalSimAlgos_HcalSignalGenerator_h
3 
16 
21 #include <iostream>
22 
23 template<class HCALDIGITIZERTRAITS>
25 {
26 public:
27  typedef typename HCALDIGITIZERTRAITS::Digi DIGI;
28  typedef typename HCALDIGITIZERTRAITS::DigiCollection COLLECTION;
29 
32 
33  virtual ~HcalSignalGenerator() {}
34 
35  void initializeEvent(const edm::Event * event, const edm::EventSetup * eventSetup)
36  {
37  theEvent = event;
38  eventSetup->get<HcalDbRecord>().get(theConditions);
40  }
41 
43  void initializeEvent(const edm::EventPrincipal * eventPrincipal, const edm::EventSetup * eventSetup)
44  {
45  theEventPrincipal = eventPrincipal;
46  eventSetup->get<HcalDbRecord>().get(theConditions);
48  }
49 
50  virtual void fill()
51  {
52  theNoiseSignals.clear();
54  const COLLECTION * digis = 0;
55  // try accessing by whatever is set, Event or EventPrincipal
56  if(theEvent)
57  {
58  if( theEvent->getByLabel(theInputTag, pDigis) ) {
59  digis = pDigis.product(); // get a ptr to the product
60  LogTrace("HcalSignalGenerator") << "total # digis for " << theInputTag << " " << digis->size();
61  }
62  else
63  {
64  throw cms::Exception("HcalSignalGenerator") << "Cannot find input data " << theInputTag;
65  }
66  }
67  else if(theEventPrincipal)
68  {
69  boost::shared_ptr<edm::Wrapper<COLLECTION> const> digisPTR =
70  edm::getProductByTag<COLLECTION>(*theEventPrincipal, theInputTag );
71  if(digisPTR) {
72  digis = digisPTR->product();
73  }
74  }
75  else
76  {
77  throw cms::Exception("HcalSignalGenerator") << "No Event or EventPrincipal was set";
78  }
79 
80  if (digis)
81  {
82  // loop over digis, adding these to the existing maps
83  for(typename COLLECTION::const_iterator it = digis->begin();
84  it != digis->end(); ++it)
85  {
86  // for the first signal, set the starting cap id
87  if((it == digis->begin()) && theElectronicsSim)
88  {
89  int startingCapId = (*it)[0].capid();
90  theElectronicsSim->setStartingCapId(startingCapId);
91  theParameterMap->setFrameSize(it->id(), it->size());
92  }
93 
94  theNoiseSignals.push_back(samplesInPE(*it));
95  }
96  }
97  }
98 
99 private:
100 
102  {
103  // calibration, for future reference: (same block for all Hcal types)
104  HcalDetId cell = digi.id();
105  // const HcalCalibrations& calibrations=conditions->getHcalCalibrations(cell);
106  const HcalQIECoder* channelCoder = theConditions->getHcalCoder (cell);
107  const HcalQIEShape* channelShape = theConditions->getHcalShape (cell);
108  HcalCoderDb coder (*channelCoder, *channelShape);
110  coder.adc2fC(digi, result);
111  fC2pe(result);
112  return result;
113  }
114 
115 
122 };
123 
128 
129 #endif
130 
edm::InputTag theInputTag
these come from the ParameterSet
void setStartingCapId(int startingCapId)
void fC2pe(CaloSamples &samples) const
HCALDIGITIZERTRAITS::Digi DIGI
std::vector< T >::const_iterator const_iterator
HCALDIGITIZERTRAITS::DigiCollection COLLECTION
const edm::Event * theEvent
these fields are set in initializeEvent()
CaloSamples samplesInPE(const DIGI &digi)
void initializeEvent(const edm::EventPrincipal *eventPrincipal, const edm::EventSetup *eventSetup)
some users use EventPrincipals, not Events. We support both
edm::ESHandle< HcalDbService > theConditions
std::vector< CaloSamples > theNoiseSignals
virtual void adc2fC(const HBHEDataFrame &df, CaloSamples &lf) const
Definition: HcalCoderDb.cc:46
const edm::EventPrincipal * theEventPrincipal
HcalSignalGenerator< HFDigitizerTraits > HFSignalGenerator
tuple result
Definition: query.py:137
void setFrameSize(const DetId &detId, int frameSize)
HcalSimParameterMap * theParameterMap
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
#define LogTrace(id)
HcalElectronicsSim * theElectronicsSim
const_iterator end() const
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
T const * product() const
Definition: Handle.h:74
HcalSignalGenerator< HODigitizerTraits > HOSignalGenerator
size_type size() const
HcalSignalGenerator< ZDCDigitizerTraits > ZDCSignalGenerator
HcalSignalGenerator< HBHEDigitizerTraits > HBHESignalGenerator
const HcalDetId & id() const
Definition: HBHEDataFrame.h:22
HcalSignalGenerator(const edm::InputTag &inputTag)
void initializeEvent(const edm::Event *event, const edm::EventSetup *eventSetup)
void setDbService(const HcalDbService *service)
const_iterator begin() const