CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
SiStripProcessedRawDigi Class Reference

A signed Digi for the silicon strip detector, containing only adc information, and suitable for storing processed (pedestal, cmn subtracted) hit information. NOTA BENE: these digis use the DetSetVector, but the public inheritence from edm::DoNotSortUponInsertion ensures that the digis are NOT sorted by the DetSetVector::post_insert() method. The strip position is therefore inferred from the position of the digi within its container (the DetSet private vector). More...

#include <SiStripProcessedRawDigi.h>

Inheritance diagram for SiStripProcessedRawDigi:
edm::DoNotSortUponInsertion

Public Member Functions

const float & adc () const
 
bool operator< (const SiStripProcessedRawDigi &other) const
 
 SiStripProcessedRawDigi (const float &adc)
 
 SiStripProcessedRawDigi ()
 
 ~SiStripProcessedRawDigi ()
 

Private Attributes

float adc_
 

Detailed Description

A signed Digi for the silicon strip detector, containing only adc information, and suitable for storing processed (pedestal, cmn subtracted) hit information. NOTA BENE: these digis use the DetSetVector, but the public inheritence from edm::DoNotSortUponInsertion ensures that the digis are NOT sorted by the DetSetVector::post_insert() method. The strip position is therefore inferred from the position of the digi within its container (the DetSet private vector).

Definition at line 16 of file SiStripProcessedRawDigi.h.

Constructor & Destructor Documentation

SiStripProcessedRawDigi::SiStripProcessedRawDigi ( const float &  adc)
inline

Definition at line 20 of file SiStripProcessedRawDigi.h.

SiStripProcessedRawDigi::SiStripProcessedRawDigi ( )
inline

Definition at line 22 of file SiStripProcessedRawDigi.h.

SiStripProcessedRawDigi::~SiStripProcessedRawDigi ( )
inline

Definition at line 23 of file SiStripProcessedRawDigi.h.

23 {;}

Member Function Documentation

const float & SiStripProcessedRawDigi::adc ( ) const
inline

Definition at line 42 of file SiStripProcessedRawDigi.h.

References adc_.

Referenced by operator<(), and operator<<().

42 { return adc_; }
bool SiStripProcessedRawDigi::operator< ( const SiStripProcessedRawDigi other) const
inline

Not used! (even if implementation is required).

Definition at line 43 of file SiStripProcessedRawDigi.h.

References adc().

43 { return ( this->adc() < other.adc() ); }
const float & adc() const

Member Data Documentation

float SiStripProcessedRawDigi::adc_
private

Definition at line 32 of file SiStripProcessedRawDigi.h.

Referenced by adc().