CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
DigiSimLinkPileUpSignals Class Reference

#include <DigiSimLinkPileUpSignals.h>

Public Types

typedef float Amplitude
 
typedef std::map< int, std::vector< std::pair< const PSimHit *, int > >, std::less< int > > HitCounterToDigisMapType
 
typedef std::map< int, std::vector< std::pair< const PSimHit *, Amplitude > >, std::less< int > > HitToDigisMapType
 

Public Member Functions

virtual void add (const std::vector< float > &locAmpl, const size_t &firstChannelWithSignal, const size_t &lastChannelWithSignal, const PSimHit *hit, const int &counter)
 
 DigiSimLinkPileUpSignals ()
 
const HitCounterToDigisMapTypedumpCounterLink () const
 
const HitToDigisMapTypedumpLink () const
 
void reset ()
 
virtual ~DigiSimLinkPileUpSignals ()
 

Private Member Functions

void resetLink ()
 

Private Attributes

HitCounterToDigisMapType theCounterMapLink
 
HitToDigisMapType theMapLink
 

Detailed Description

Class which takes the responses from each SimHit and piles-up them, within a given module. More precisely, it keeps for each strip the link to each individual measurement.

Definition at line 13 of file DigiSimLinkPileUpSignals.h.

Member Typedef Documentation

Definition at line 16 of file DigiSimLinkPileUpSignals.h.

typedef std::map<int, std::vector<std::pair<const PSimHit*, int> >, std::less<int> > DigiSimLinkPileUpSignals::HitCounterToDigisMapType

Definition at line 22 of file DigiSimLinkPileUpSignals.h.

typedef std::map<int, std::vector<std::pair<const PSimHit*, Amplitude> >, std::less<int> > DigiSimLinkPileUpSignals::HitToDigisMapType

Definition at line 19 of file DigiSimLinkPileUpSignals.h.

Constructor & Destructor Documentation

DigiSimLinkPileUpSignals::DigiSimLinkPileUpSignals ( )
inline

Definition at line 24 of file DigiSimLinkPileUpSignals.h.

References reset().

virtual DigiSimLinkPileUpSignals::~DigiSimLinkPileUpSignals ( )
inlinevirtual

Definition at line 26 of file DigiSimLinkPileUpSignals.h.

References add().

26 {}

Member Function Documentation

void DigiSimLinkPileUpSignals::add ( const std::vector< float > &  locAmpl,
const size_t &  firstChannelWithSignal,
const size_t &  lastChannelWithSignal,
const PSimHit hit,
const int &  counter 
)
virtual

Definition at line 9 of file DigiSimLinkPileUpSignals.cc.

References theCounterMapLink, and theMapLink.

Referenced by counter.Counter::register(), DigiSimLinkAlgorithm::run(), and ~DigiSimLinkPileUpSignals().

13  {
14  for (size_t iChannel = firstChannelWithSignal; iChannel < lastChannelWithSignal; ++iChannel) {
15  theMapLink[iChannel].push_back(std::pair<const PSimHit*, Amplitude>(hit, Amplitude(locAmpl[iChannel])));
16  theCounterMapLink[iChannel].push_back(std::make_pair(hit, counter));
17  }
18 }
HitCounterToDigisMapType theCounterMapLink
const HitCounterToDigisMapType& DigiSimLinkPileUpSignals::dumpCounterLink ( ) const
inline

Definition at line 38 of file DigiSimLinkPileUpSignals.h.

References resetLink(), and theCounterMapLink.

Referenced by DigiSimLinkAlgorithm::run().

38 { return theCounterMapLink; }
HitCounterToDigisMapType theCounterMapLink
const HitToDigisMapType& DigiSimLinkPileUpSignals::dumpLink ( ) const
inline

Definition at line 36 of file DigiSimLinkPileUpSignals.h.

References theMapLink.

Referenced by DigiSimLinkAlgorithm::run().

36 { return theMapLink; }
void DigiSimLinkPileUpSignals::reset ( void  )
inline
void DigiSimLinkPileUpSignals::resetLink ( )
private

Definition at line 4 of file DigiSimLinkPileUpSignals.cc.

References theCounterMapLink, and theMapLink.

Referenced by dumpCounterLink(), and reset().

4  {
5  theMapLink.clear();
6  theCounterMapLink.clear();
7 }
HitCounterToDigisMapType theCounterMapLink

Member Data Documentation

HitCounterToDigisMapType DigiSimLinkPileUpSignals::theCounterMapLink
private

Definition at line 43 of file DigiSimLinkPileUpSignals.h.

Referenced by add(), dumpCounterLink(), and resetLink().

HitToDigisMapType DigiSimLinkPileUpSignals::theMapLink
private

Definition at line 42 of file DigiSimLinkPileUpSignals.h.

Referenced by add(), dumpLink(), and resetLink().