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 namespace edm {
24  class ModuleCallingContext;
25 }
26 
27 template<class HCALDIGITIZERTRAITS>
29 {
30 public:
31  typedef typename HCALDIGITIZERTRAITS::Digi DIGI;
32  typedef typename HCALDIGITIZERTRAITS::DigiCollection COLLECTION;
33 
35 
38  { }
39 
40  virtual ~HcalSignalGenerator() {}
41 
42 
43  void initializeEvent(const edm::Event * event, const edm::EventSetup * eventSetup)
44  {
45  theEvent = event;
46  eventSetup->get<HcalDbRecord>().get(theConditions);
48  }
49 
51  void initializeEvent(const edm::EventPrincipal * eventPrincipal, const edm::EventSetup * eventSetup)
52  {
53  theEventPrincipal = eventPrincipal;
54  eventSetup->get<HcalDbRecord>().get(theConditions);
56  }
57 
58  virtual void fill(edm::ModuleCallingContext const* mcc)
59  {
60 
61  theNoiseSignals.clear();
63  const COLLECTION * digis = 0;
64  // try accessing by whatever is set, Event or EventPrincipal
65  if(theEvent)
66  {
67  if( theEvent->getByToken(tok_, pDigis) ) {
68  digis = pDigis.product(); // get a ptr to the product
69  LogTrace("HcalSignalGenerator") << "total # digis for " << theInputTag << " " << digis->size();
70  }
71  else
72  {
73  throw cms::Exception("HcalSignalGenerator") << "Cannot find input data " << theInputTag;
74  }
75  }
76  else if(theEventPrincipal)
77  {
78  boost::shared_ptr<edm::Wrapper<COLLECTION> const> digisPTR =
79  edm::getProductByTag<COLLECTION>(*theEventPrincipal, theInputTag, mcc );
80  if(digisPTR) {
81  digis = digisPTR->product();
82  }
83  }
84  else
85  {
86  throw cms::Exception("HcalSignalGenerator") << "No Event or EventPrincipal was set";
87  }
88 
89  if (digis)
90  {
91 
92  // loop over digis, adding these to the existing maps
93  for(typename COLLECTION::const_iterator it = digis->begin();
94  it != digis->end(); ++it)
95  {
96  // for the first signal, set the starting cap id
97  if((it == digis->begin()) && theElectronicsSim)
98  {
99  int startingCapId = (*it)[0].capid();
100  theElectronicsSim->setStartingCapId(startingCapId);
101  // theParameterMap->setFrameSize(it->id(), it->size()); //don't need this
102  }
103  if(validDigi(*it)) {
104  theNoiseSignals.push_back(samplesInPE(*it));
105  }
106  }
107  }
108  }
109 
110 private:
111 
112 
113  virtual void fillNoiseSignals(CLHEP::HepRandomEngine*) override {}
114  virtual void fillNoiseSignals() override {}
115 
116  bool validDigi(const DIGI & digi)
117  {
118  int DigiSum = 0;
119  for(int id = 0; id<digi.size(); id++) {
120  if(digi[id].adc() > 0) ++DigiSum;
121  }
122  return(DigiSum>0);
123  }
124 
125 
127  {
128  // calibration, for future reference: (same block for all Hcal types)
129  HcalDetId cell = digi.id();
130  // const HcalCalibrations& calibrations=conditions->getHcalCalibrations(cell);
131  const HcalQIECoder* channelCoder = theConditions->getHcalCoder (cell);
132  const HcalQIEShape* channelShape = theConditions->getHcalShape (cell);
133  HcalCoderDb coder (*channelCoder, *channelShape);
135  coder.adc2fC(digi, result);
136  fC2pe(result);
137 
138  // std::cout << " HcalSignalGenerator: noise input " << digi << std::endl;
139 
140  return result;
141  }
142 
143 
151 };
152 
157 
158 #endif
159 
int adc(sample_type sample)
get the ADC sample (12 bits)
edm::InputTag theInputTag
these come from the ParameterSet
void setStartingCapId(int startingCapId)
HcalSignalGenerator(const edm::InputTag &inputTag, const edm::EDGetTokenT< COLLECTION > &t)
void fC2pe(CaloSamples &samples) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
HCALDIGITIZERTRAITS::Digi DIGI
int size() const
total number of samples in the digi
Definition: HBHEDataFrame.h:26
std::vector< HBHEDataFrame >::const_iterator const_iterator
HCALDIGITIZERTRAITS::DigiCollection COLLECTION
virtual void fillNoiseSignals(CLHEP::HepRandomEngine *) override
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 fill(edm::ModuleCallingContext const *mcc)
virtual void adc2fC(const HBHEDataFrame &df, CaloSamples &lf) const
Definition: HcalCoderDb.cc:44
const edm::EventPrincipal * theEventPrincipal
HcalSignalGenerator< HFDigitizerTraits > HFSignalGenerator
tuple result
Definition: query.py:137
HcalSimParameterMap * theParameterMap
edm::EDGetTokenT< COLLECTION > tok_
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
#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:81
HcalSignalGenerator< HODigitizerTraits > HOSignalGenerator
size_type size() const
HcalSignalGenerator< ZDCDigitizerTraits > ZDCSignalGenerator
virtual void fillNoiseSignals() override
HcalSignalGenerator< HBHEDigitizerTraits > HBHESignalGenerator
const HcalDetId & id() const
Definition: HBHEDataFrame.h:22
bool validDigi(const DIGI &digi)
void initializeEvent(const edm::Event *event, const edm::EventSetup *eventSetup)
void setDbService(const HcalDbService *service)
const_iterator begin() const