17 #include "boost/foreach.hpp"
43 uint16_t
applyGain(
const uint16_t& strip,
const uint16_t&
adc );
59 produces< DigiCollection > (
"ZeroSuppressed");
60 produces< DigiCollection > (
"VirginRaw" );
61 produces< DigiCollection > (
"ProcessedRaw" );
62 produces< DigiCollection > (
"ScopeMode" );
71 std::vector<DetDigiCollection> output_base;
73 event.getByToken(
token,input);
79 std::auto_ptr< DigiCollection > outputZS(
new DigiCollection(output_base) );
84 event.put( outputZS,
"ZeroSuppressed");
85 event.put( outputVR,
"VirginRaw" );
86 event.put( outputPR,
"ProcessedRaw" );
87 event.put( outputSM,
"ScopeMode" );
95 uint32_t
detid=it->detId();
101 for(;clus!=endclus;clus++){
103 size_t width = clus->amplitudes().size();
104 size_t firstStrip = clus->firstStrip();
105 uint16_t stripPos=firstStrip;
106 for(;istrip<
width;++istrip){
113 output_base.push_back(detDigis);
139 if(adc > 255)
throw cms::Exception(
"Invalid Charge") <<
" digi at strip " << strip <<
" has ADC out of range " <<
adc;
140 if(adc > 253)
return adc;
141 uint16_t
charge =
static_cast<uint16_t
>( adc*
gain(strip) + 0.5 );
142 return ( charge > 1022 ? 255 :
143 ( charge > 253 ? 254 : charge ));
int adc(sample_type sample)
get the ADC sample (12 bits)
T getParameter(std::string const &) const
void setDetId(const uint32_t id)
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
edm::DetSetVector< SiStripDigi > DigiCollection
const_iterator end(bool update=false) const
edmNew::DetSet< SiStripCluster > DetClusterCollection
#define DEFINE_FWK_MODULE(type)
SiStripApvGain::Range gainRange
uint16_t applyGain(const uint16_t &strip, const uint16_t &adc)
data_type const * const_iterator
edm::ESHandle< SiStripGain > gainHandle
float gain(const uint16_t &strip) const
static std::string const input
void initialize(const edm::EventSetup &es)
std::pair< ContainerIterator, ContainerIterator > Range
edm::DetSet< SiStripDigi > DetDigiCollection
A Digi for the silicon strip detector, containing both strip and adc information, and suitable for st...
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
edm::EDGetTokenT< ClusterCollection > token
edmNew::DetSetVector< SiStripCluster > ClusterCollection
void produce(edm::Event &, const edm::EventSetup &) override
void process(const ClusterCollection &input, std::vector< DetDigiCollection > &output_base)
edmNew::DetSet< SiStripCluster >::const_iterator DetClusIter
SiStripClusterToDigiProducer(const edm::ParameterSet &conf)
collection_type::const_iterator const_iterator
edm::DetSet< SiStripDigi >::const_iterator DetDigiIter
const_iterator begin(bool update=false) const