test
CMS 3D CMS Logo

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

#include <CastorTriggerPrimitiveDigi.h>

Public Types

typedef HcalCastorDetId key_type
 For the sorted collection. More...
 

Public Member Functions

 CastorTriggerPrimitiveDigi ()
 
 CastorTriggerPrimitiveDigi (const HcalCastorDetId &id)
 
const HcalCastorDetIdid () const
 
bool isSOI (int i) const
 
const HcalTriggerPrimitiveSampleoperator[] (int i) const
 
int presamples () const
 
const HcalTriggerPrimitiveSamplesample (int i) const
 
void setPresamples (int ps)
 
void setSample (int i, const HcalTriggerPrimitiveSample &sam)
 
void setSize (int size)
 
void setZSInfo (bool unsuppressed, bool markAndPass)
 
int size () const
 
int SOI_compressedEt () const
 Compressed ET for the "Sample of Interest". More...
 
bool SOI_fineGrain () const
 Fine-grain bit for the "Sample of Interest". More...
 
int SOI_tpchannel () const
 
int SOI_tpdata () const
 
const HcalTriggerPrimitiveSamplet0 () const
 Full "Sample of Interest". More...
 
int tpchannel (int i) const
 
int tpdata (int i) const
 
bool zsMarkAndPass () const
 was ZS MarkAndPass? More...
 
bool zsUnsuppressed () const
 was ZS unsuppressed? More...
 

Static Public Attributes

static const int MAXSAMPLES = 10
 

Private Attributes

HcalTriggerPrimitiveSample data_ [MAXSAMPLES]
 
int hcalPresamples_
 
HcalCastorDetId id_
 
int size_
 

Detailed Description

Author
A. Campbell - DESY

Definition at line 13 of file CastorTriggerPrimitiveDigi.h.

Member Typedef Documentation

For the sorted collection.

Definition at line 15 of file CastorTriggerPrimitiveDigi.h.

Constructor & Destructor Documentation

CastorTriggerPrimitiveDigi::CastorTriggerPrimitiveDigi ( )
CastorTriggerPrimitiveDigi::CastorTriggerPrimitiveDigi ( const HcalCastorDetId id)
explicit

Member Function Documentation

const HcalCastorDetId& CastorTriggerPrimitiveDigi::id ( void  ) const
inline

Definition at line 20 of file CastorTriggerPrimitiveDigi.h.

References id_.

Referenced by operator<<().

20 { return id_; }
bool CastorTriggerPrimitiveDigi::isSOI ( int  i) const
inline

Definition at line 43 of file CastorTriggerPrimitiveDigi.h.

References data_.

Referenced by operator<<().

43 { return ( ( data_[i].raw() & 0x0200 ) == 0x0200 ) ; }
int i
Definition: DBlmapReader.cc:9
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
const HcalTriggerPrimitiveSample& CastorTriggerPrimitiveDigi::operator[] ( int  i) const
inline

Definition at line 31 of file CastorTriggerPrimitiveDigi.h.

References data_, and i.

31 { return data_[i]; }
int i
Definition: DBlmapReader.cc:9
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
int CastorTriggerPrimitiveDigi::presamples ( ) const
inline

Definition at line 22 of file CastorTriggerPrimitiveDigi.h.

References hcalPresamples_.

Referenced by operator<<(), SOI_tpchannel(), SOI_tpdata(), and t0().

const HcalTriggerPrimitiveSample& CastorTriggerPrimitiveDigi::sample ( int  i) const
inline

Definition at line 32 of file CastorTriggerPrimitiveDigi.h.

References data_, and i.

Referenced by operator<<().

32 { return data_[i]; }
int i
Definition: DBlmapReader.cc:9
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
void CastorTriggerPrimitiveDigi::setPresamples ( int  ps)

Definition at line 15 of file CastorTriggerPrimitiveDigi.cc.

References hcalPresamples_.

15  {
16  if (ps<0) hcalPresamples_&=0xFFFFFF0;
17  // else if (ps>=size_) hcalPresamples_=size_-1;
18  else hcalPresamples_|=ps&0xF;
19 }
void CastorTriggerPrimitiveDigi::setSample ( int  i,
const HcalTriggerPrimitiveSample sam 
)
inline

Definition at line 49 of file CastorTriggerPrimitiveDigi.h.

References data_, and i.

49 { data_[i]=sam; }
int i
Definition: DBlmapReader.cc:9
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
void CastorTriggerPrimitiveDigi::setSize ( int  size)

Definition at line 10 of file CastorTriggerPrimitiveDigi.cc.

References MAXSAMPLES, size(), and size_.

void CastorTriggerPrimitiveDigi::setZSInfo ( bool  unsuppressed,
bool  markAndPass 
)

Definition at line 21 of file CastorTriggerPrimitiveDigi.cc.

References hcalPresamples_.

21  {
22  if (markAndPass) hcalPresamples_|=0x10;
23  if (unsuppressed) hcalPresamples_|=0x20;
24 }
int CastorTriggerPrimitiveDigi::size ( void  ) const
inline

Definition at line 21 of file CastorTriggerPrimitiveDigi.h.

References size_.

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

21 { return (size_&0xF); }
int CastorTriggerPrimitiveDigi::SOI_compressedEt ( ) const
inline

Compressed ET for the "Sample of Interest".

Definition at line 39 of file CastorTriggerPrimitiveDigi.h.

References HcalTriggerPrimitiveSample::compressedEt(), and t0().

39 { return t0().compressedEt(); }
const HcalTriggerPrimitiveSample & t0() const
Full &quot;Sample of Interest&quot;.
int compressedEt() const
get the encoded/compressed Et
bool CastorTriggerPrimitiveDigi::SOI_fineGrain ( ) const
inline

Fine-grain bit for the "Sample of Interest".

Definition at line 37 of file CastorTriggerPrimitiveDigi.h.

References HcalTriggerPrimitiveSample::fineGrain(), and t0().

37 { return t0().fineGrain(); }
const HcalTriggerPrimitiveSample & t0() const
Full &quot;Sample of Interest&quot;.
bool fineGrain() const
get the fine-grain bit
int CastorTriggerPrimitiveDigi::SOI_tpchannel ( ) const
inline

Definition at line 44 of file CastorTriggerPrimitiveDigi.h.

References data_, and presamples().

Referenced by operator<<().

44 { return ( ( data_[presamples()].raw() & 0xf800 ) >> 11 ); }
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
int CastorTriggerPrimitiveDigi::SOI_tpdata ( ) const
inline

Definition at line 45 of file CastorTriggerPrimitiveDigi.h.

References data_, and presamples().

Referenced by operator<<().

45 { return ( data_[presamples()].raw() & 0x01ff ); }
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
const HcalTriggerPrimitiveSample& CastorTriggerPrimitiveDigi::t0 ( ) const
inline

Full "Sample of Interest".

Definition at line 35 of file CastorTriggerPrimitiveDigi.h.

References data_, and presamples().

Referenced by SOI_compressedEt(), and SOI_fineGrain().

35 { return data_[presamples()]; }
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
int CastorTriggerPrimitiveDigi::tpchannel ( int  i) const
inline

Definition at line 41 of file CastorTriggerPrimitiveDigi.h.

References data_.

Referenced by operator<<().

41 { return ( ( data_[i].raw() & 0xf800 ) >> 11 ); }
int i
Definition: DBlmapReader.cc:9
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
int CastorTriggerPrimitiveDigi::tpdata ( int  i) const
inline

Definition at line 42 of file CastorTriggerPrimitiveDigi.h.

References data_.

Referenced by operator<<().

42 { return ( data_[i].raw() & 0x01ff ); }
int i
Definition: DBlmapReader.cc:9
HcalTriggerPrimitiveSample data_[MAXSAMPLES]
bool CastorTriggerPrimitiveDigi::zsMarkAndPass ( ) const
inline

was ZS MarkAndPass?

Definition at line 25 of file CastorTriggerPrimitiveDigi.h.

References hcalPresamples_.

Referenced by operator<<().

bool CastorTriggerPrimitiveDigi::zsUnsuppressed ( ) const
inline

was ZS unsuppressed?

Definition at line 27 of file CastorTriggerPrimitiveDigi.h.

References hcalPresamples_.

Referenced by operator<<().

Member Data Documentation

HcalTriggerPrimitiveSample CastorTriggerPrimitiveDigi::data_[MAXSAMPLES]
private
int CastorTriggerPrimitiveDigi::hcalPresamples_
private
HcalCastorDetId CastorTriggerPrimitiveDigi::id_
private

Definition at line 53 of file CastorTriggerPrimitiveDigi.h.

Referenced by id().

const int CastorTriggerPrimitiveDigi::MAXSAMPLES = 10
static

Definition at line 51 of file CastorTriggerPrimitiveDigi.h.

Referenced by setSize().

int CastorTriggerPrimitiveDigi::size_
private

Definition at line 54 of file CastorTriggerPrimitiveDigi.h.

Referenced by setSize(), and size().