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 Member Functions | Private Attributes | Friends
HcalPedestal Class Reference

#include <HcalPedestal.h>

Public Member Functions

float getValue (int fCapId) const
 get value for capId = 0..3 More...
 
const float * getValues () const
 get value for all capId = 0..3 More...
 
float getWidth (int fCapId) const
 get width for capId = 0..3 More...
 
const float * getWidths () const
 get width for all capId = 0..3 More...
 
 HcalPedestal ()
 
 HcalPedestal (unsigned long fId, float fCap0, float fCap1, float fCap2, float fCap3, float wCap0=0, float wCap1=0, float wCap2=0, float wCap3=0)
 
uint32_t rawId () const
 

Private Member Functions

template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Private Attributes

uint32_t mId
 
float mValue0
 
float mValue1
 
float mValue2
 
float mValue3
 
float mWidth0
 
float mWidth1
 
float mWidth2
 
float mWidth3
 

Friends

class boost::serialization::access
 
template<typename CondSerializationT , typename Enabled >
struct cond::serialization::access
 

Detailed Description

Author
Fedor Ratnikov (UMd) POOL object to store Pedestal values 4xCapId $Author: ratnikov
Date:
2007/12/14 13:19:53
Revision:
1.7

Definition at line 16 of file HcalPedestal.h.

Constructor & Destructor Documentation

HcalPedestal::HcalPedestal ( )
inline

Definition at line 30 of file HcalPedestal.h.

30  : mId (0), mValue0 (0), mValue1 (0), mValue2 (0), mValue3 (0),
31  mWidth0 (0), mWidth1 (0), mWidth2 (0), mWidth3 (0) {}
uint32_t mId
Definition: HcalPedestal.h:40
HcalPedestal::HcalPedestal ( unsigned long  fId,
float  fCap0,
float  fCap1,
float  fCap2,
float  fCap3,
float  wCap0 = 0,
float  wCap1 = 0,
float  wCap2 = 0,
float  wCap3 = 0 
)
inline

Definition at line 33 of file HcalPedestal.h.

34  :
35  mId (fId), mValue0 (fCap0), mValue1 (fCap1), mValue2 (fCap2), mValue3 (fCap3),
36  mWidth0 (wCap0), mWidth1 (wCap1), mWidth2 (wCap2), mWidth3 (wCap3) {}
uint32_t mId
Definition: HcalPedestal.h:40

Member Function Documentation

float HcalPedestal::getValue ( int  fCapId) const
inline

get value for capId = 0..3

Definition at line 21 of file HcalPedestal.h.

References getValues().

Referenced by XMLDocument::addData(), HcalAmplifier::addPedestals(), HcalPedestalAnalysis::HcalPedVal(), ZSEnergy_impl::keepMe(), and XMLDocument::makeData().

21 {return *(getValues () + fCapId);}
const float * getValues() const
get value for all capId = 0..3
Definition: HcalPedestal.h:19
const float* HcalPedestal::getValues ( ) const
inline

get value for all capId = 0..3

Definition at line 19 of file HcalPedestal.h.

References mValue0.

Referenced by HcalPedestalsCheck::analyze(), HcalDbXml::dumpObject(), fillDefaults(), getValue(), and HcalDbService::makeHcalCalibration().

19 {return &mValue0;}
float HcalPedestal::getWidth ( int  fCapId) const
inline

get width for capId = 0..3

Definition at line 26 of file HcalPedestal.h.

References getWidths().

26 {return *(getWidths () + fCapId);}
const float * getWidths() const
get width for all capId = 0..3
Definition: HcalPedestal.h:24
const float* HcalPedestal::getWidths ( ) const
inline

get width for all capId = 0..3

Definition at line 24 of file HcalPedestal.h.

References mWidth0.

Referenced by getWidth().

24 {return &mWidth0;}
uint32_t HcalPedestal::rawId ( ) const
inline

Definition at line 38 of file HcalPedestal.h.

References mId.

38 {return mId;}
uint32_t mId
Definition: HcalPedestal.h:40
template<class Archive >
void HcalPedestal::serialize ( Archive &  ar,
const unsigned int  version 
)
private

Friends And Related Function Documentation

friend class boost::serialization::access
friend

Definition at line 50 of file HcalPedestal.h.

template<typename CondSerializationT , typename Enabled >
friend struct cond::serialization::access
friend

Definition at line 50 of file HcalPedestal.h.

Member Data Documentation

uint32_t HcalPedestal::mId
private

Definition at line 40 of file HcalPedestal.h.

Referenced by rawId().

float HcalPedestal::mValue0
private

Definition at line 41 of file HcalPedestal.h.

Referenced by getValues().

float HcalPedestal::mValue1
private

Definition at line 42 of file HcalPedestal.h.

float HcalPedestal::mValue2
private

Definition at line 43 of file HcalPedestal.h.

float HcalPedestal::mValue3
private

Definition at line 44 of file HcalPedestal.h.

float HcalPedestal::mWidth0
private

Definition at line 45 of file HcalPedestal.h.

Referenced by getWidths().

float HcalPedestal::mWidth1
private

Definition at line 46 of file HcalPedestal.h.

float HcalPedestal::mWidth2
private

Definition at line 47 of file HcalPedestal.h.

float HcalPedestal::mWidth3
private

Definition at line 48 of file HcalPedestal.h.