CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
SiStripClusterToDigiProducer Class Reference
Inheritance diagram for SiStripClusterToDigiProducer:
edm::stream::EDProducer<>

Public Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 
 SiStripClusterToDigiProducer (const edm::ParameterSet &conf)
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Types

typedef edmNew::DetSetVector< SiStripClusterClusterCollection
 
typedef edmNew::DetSet< SiStripCluster >::const_iterator DetClusIter
 
typedef edmNew::DetSet< SiStripClusterDetClusterCollection
 
typedef edm::DetSet< SiStripDigiDetDigiCollection
 
typedef edm::DetSet< SiStripDigi >::const_iterator DetDigiIter
 
typedef edm::DetSetVector< SiStripDigiDigiCollection
 

Private Member Functions

uint16_t applyGain (const uint16_t &strip, const uint16_t &adc)
 
float gain (const uint16_t &strip) const
 
void initialize (const edm::EventSetup &es)
 
void process (const ClusterCollection &input, std::vector< DetDigiCollection > &output_base)
 
void setDetId (const uint32_t id)
 

Private Attributes

uint32_t detId
 
uint32_t gain_cache_id
 
edm::ESHandle< SiStripGaingainHandle
 
SiStripApvGain::Range gainRange
 
edm::EDGetTokenT< ClusterCollectiontoken
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Definition at line 19 of file SiStripClusterToDigiProducer.cc.

Member Typedef Documentation

Definition at line 21 of file SiStripClusterToDigiProducer.cc.

Definition at line 23 of file SiStripClusterToDigiProducer.cc.

Definition at line 22 of file SiStripClusterToDigiProducer.cc.

Definition at line 27 of file SiStripClusterToDigiProducer.cc.

Definition at line 28 of file SiStripClusterToDigiProducer.cc.

Definition at line 26 of file SiStripClusterToDigiProducer.cc.

Constructor & Destructor Documentation

SiStripClusterToDigiProducer::SiStripClusterToDigiProducer ( const edm::ParameterSet conf)
explicit

Definition at line 53 of file SiStripClusterToDigiProducer.cc.

References edm::ParameterSet::getParameter(), produce(), and token.

54 {
55 
56  token = consumes<ClusterCollection>(conf.getParameter<edm::InputTag>("ClusterProducer"));
57 
58  produces< DigiCollection > ("ZeroSuppressed");
59  produces< DigiCollection > ("VirginRaw" );
60  produces< DigiCollection > ("ProcessedRaw" );
61  produces< DigiCollection > ("ScopeMode" );
62 
63 }
T getParameter(std::string const &) const
edm::EDGetTokenT< ClusterCollection > token

Member Function Documentation

uint16_t SiStripClusterToDigiProducer::applyGain ( const uint16_t &  strip,
const uint16_t &  adc 
)
inlineprivate

Definition at line 136 of file SiStripClusterToDigiProducer.cc.

References ecalMGPA::adc(), ALCARECOTkAlJpsiMuMu_cff::charge, DEFINE_FWK_MODULE, Exception, and gain().

Referenced by gain(), process(), and setDetId().

136  {
137 
138  if(adc > 255) throw cms::Exception("Invalid Charge") << " digi at strip " << strip << " has ADC out of range " << adc;
139  if(adc > 253) return adc; //saturated, do not scale
140  uint16_t charge = static_cast<uint16_t>( adc*gain(strip) + 0.5 ); //NB: here we revert the gain applied at the clusterizer level. for this reason the adc counts are multiplied by gain and not divided
141  return ( charge > 1022 ? 255 :
142  ( charge > 253 ? 254 : charge ));
143 }
float gain(const uint16_t &strip) const
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
float SiStripClusterToDigiProducer::gain ( const uint16_t &  strip) const
inlineprivate

Definition at line 41 of file SiStripClusterToDigiProducer.cc.

References ecalMGPA::adc(), applyGain(), gainHandle, gainRange, SiStripGain::getStripGain(), and digitizers_cfi::strip.

Referenced by applyGain().

41 { return gainHandle->getStripGain( strip, gainRange ); }
edm::ESHandle< SiStripGain > gainHandle
static float getStripGain(const uint16_t &strip, const SiStripApvGain::Range &range)
Definition: SiStripGain.h:73
void SiStripClusterToDigiProducer::initialize ( const edm::EventSetup es)
private

Definition at line 117 of file SiStripClusterToDigiProducer.cc.

References gain_cache_id, gainHandle, edm::EventSetup::get(), and setDetId().

Referenced by process(), and produce().

117  {
118  uint32_t g_cache_id = es.get<SiStripGainRcd>().cacheIdentifier();
119 
120  if(g_cache_id != gain_cache_id) {
121  es.get<SiStripGainRcd>().get( gainHandle );
122  gain_cache_id = g_cache_id;
123  }
124 }
edm::ESHandle< SiStripGain > gainHandle
T get() const
Definition: EventSetup.h:71
void SiStripClusterToDigiProducer::process ( const ClusterCollection input,
std::vector< DetDigiCollection > &  output_base 
)
private

Definition at line 90 of file SiStripClusterToDigiProducer.cc.

References applyGain(), edmNew::DetSetVector< T >::begin(), edm::DetSet< T >::data, edm::DetSet< T >::empty(), edmNew::DetSetVector< T >::end(), initialize(), setDetId(), and ApeEstimator_cff::width.

Referenced by produce().

90  {
91 
92  for(ClusterCollection::const_iterator it = input.begin(); it!=input.end(); ++it) {
93 
94  uint32_t detid=it->detId();
95 
96  setDetId(detid);
97  DetDigiCollection detDigis(detid);
98 
99  DetClusIter clus(it->begin()), endclus(it->end());
100  for(;clus!=endclus;clus++){
101  size_t istrip = 0;
102  size_t width = clus->amplitudes().size();
103  size_t firstStrip = clus->firstStrip();
104  uint16_t stripPos=firstStrip;
105  for(;istrip<width;++istrip){
106  detDigis.data.push_back( SiStripDigi( stripPos, applyGain(stripPos,clus->amplitudes()[istrip]) ) );
107  stripPos++;
108  }
109  }
110 
111  if (!detDigis.empty())
112  output_base.push_back(detDigis);
113  }
114 }
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
const_iterator end(bool update=false) const
uint16_t applyGain(const uint16_t &strip, const uint16_t &adc)
edm::DetSet< SiStripDigi > DetDigiCollection
A Digi for the silicon strip detector, containing both strip and adc information, and suitable for st...
Definition: SiStripDigi.h:12
edmNew::DetSet< SiStripCluster >::const_iterator DetClusIter
const_iterator begin(bool update=false) const
void SiStripClusterToDigiProducer::produce ( edm::Event event,
const edm::EventSetup es 
)
override

Definition at line 66 of file SiStripClusterToDigiProducer.cc.

References initialize(), input, edm::HandleBase::isValid(), eostools::move(), process(), and token.

Referenced by SiStripClusterToDigiProducer().

66  {
67 
68  initialize(es);
69 
70  std::vector<DetDigiCollection> output_base;
72  event.getByToken(token,input);
73 
74  if(input.isValid())
75  process(*input, output_base);
76 
77 
78  auto outputZS = std::make_unique<DigiCollection>(output_base);
79  auto outputVR = std::make_unique<DigiCollection>();
80  auto outputPR = std::make_unique<DigiCollection>();
81  auto outputSM = std::make_unique<DigiCollection>();
82 
83  event.put(std::move(outputZS), "ZeroSuppressed");
84  event.put(std::move(outputVR), "VirginRaw" );
85  event.put(std::move(outputPR), "ProcessedRaw" );
86  event.put(std::move(outputSM), "ScopeMode" );
87 }
static std::string const input
Definition: EdmProvDump.cc:48
void initialize(const edm::EventSetup &es)
bool isValid() const
Definition: HandleBase.h:74
edm::EDGetTokenT< ClusterCollection > token
void process(const ClusterCollection &input, std::vector< DetDigiCollection > &output_base)
def move(src, dest)
Definition: eostools.py:511
void SiStripClusterToDigiProducer::setDetId ( const uint32_t  id)
inlineprivate

Definition at line 129 of file SiStripClusterToDigiProducer.cc.

References applyGain(), detId, gainHandle, gainRange, SiStripGain::getRange(), and triggerObjects_cff::id.

Referenced by initialize(), and process().

129  {
130  gainRange = gainHandle->getRange(id);
131  detId = id;
132 }
edm::ESHandle< SiStripGain > gainHandle
const SiStripApvGain::Range getRange(uint32_t detID) const
Definition: SiStripGain.h:71

Member Data Documentation

uint32_t SiStripClusterToDigiProducer::detId
private

Definition at line 47 of file SiStripClusterToDigiProducer.cc.

Referenced by setDetId().

uint32_t SiStripClusterToDigiProducer::gain_cache_id
private

Definition at line 47 of file SiStripClusterToDigiProducer.cc.

Referenced by initialize().

edm::ESHandle<SiStripGain> SiStripClusterToDigiProducer::gainHandle
private

Definition at line 46 of file SiStripClusterToDigiProducer.cc.

Referenced by gain(), initialize(), and setDetId().

SiStripApvGain::Range SiStripClusterToDigiProducer::gainRange
private

Definition at line 45 of file SiStripClusterToDigiProducer.cc.

Referenced by gain(), and setDetId().

edm::EDGetTokenT<ClusterCollection> SiStripClusterToDigiProducer::token
private

Definition at line 44 of file SiStripClusterToDigiProducer.cc.

Referenced by produce(), and SiStripClusterToDigiProducer().