CMS 3D CMS Logo

ESZeroSuppressionProducer.cc
Go to the documentation of this file.
4 
6  digiProducer_ = ps.getParameter<std::string>("digiProducer");
7  ESdigiCollection_ = ps.getParameter<std::string>("ESdigiCollection");
8  ESZSdigiCollection_ = ps.getParameter<std::string>("ESZSdigiCollection");
9 
10  produces<ESDigiCollection>(ESZSdigiCollection_);
11 
12  ES_token = consumes<ESDigiCollection>(edm::InputTag(digiProducer_));
13  ;
14 }
15 
17 
19  eventSetup.get<ESThresholdsRcd>().get(esthresholds_);
21 
22  eventSetup.get<ESPedestalsRcd>().get(espeds_);
23  const ESPedestals *pedestals = espeds_.product();
24 
25  float ts2Threshold = thresholds->getTS2Threshold();
26 
28 
29  bool fullESDigis = true;
30  event.getByToken(ES_token, ESDigis);
31  if (!ESDigis.isValid()) {
32  edm::LogError("ZeroSuppressionError") << "Error! can't get the product " << ESdigiCollection_.c_str();
33  fullESDigis = false;
34  }
35 
36  std::unique_ptr<ESDigiCollection> ESZSDigis(new ESDigiCollection());
37 
38  if (fullESDigis) {
39  for (ESDigiCollection::const_iterator i(ESDigis->begin()); i != ESDigis->end(); ++i) {
40  ESDataFrame dataframe = (*i);
41 
42  ESPedestals::const_iterator it_ped = pedestals->find(dataframe.id());
43 
44  if (dataframe.sample(1).adc() > (ts2Threshold + it_ped->getMean())) {
45  // std::cout<<dataframe.sample(1).adc()<<"
46  // "<<ts2Threshold+it_ped->getMean()<<std::endl;
47  (*ESZSDigis).push_back(*i);
48  }
49  }
50  }
51 
52  event.put(std::move(ESZSDigis), ESZSdigiCollection_);
53 }
T getParameter(std::string const &) const
boost::transform_iterator< IterHelp, boost::counting_iterator< int > > const_iterator
ESZeroSuppressionProducer(const edm::ParameterSet &ps)
edm::ESHandle< ESPedestals > espeds_
const ESDetId & id() const
Definition: ESDataFrame.h:21
edm::EDGetTokenT< ESDigiCollection > ES_token
const_iterator begin() const
edm::ESHandle< ESThresholds > esthresholds_
const_iterator find(uint32_t rawId) const
const ESSample & sample(int i) const
Definition: ESDataFrame.h:26
bool isValid() const
Definition: HandleBase.h:74
void produce(edm::Event &event, const edm::EventSetup &eventSetup) override
float getTS2Threshold() const
Definition: ESThresholds.h:16
std::vector< Item >::const_iterator const_iterator
const_iterator end() const
T get() const
Definition: EventSetup.h:71
int adc() const
get the ADC sample (singed 16 bits)
Definition: ESSample.h:18
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:511
Definition: event.py:1