ATLAS Offline Software
Public Member Functions | Private Attributes | List of all members
TileFastRawChannel Class Reference

#include <TileFastRawChannel.h>

Collaboration diagram for TileFastRawChannel:

Public Member Functions

 TileFastRawChannel ()
 
 TileFastRawChannel (unsigned int channel, unsigned int adc, float amplitude, float time, float quality)
 
 TileFastRawChannel (int frag, unsigned int channel, unsigned int adc, float amplitude, float time, float quality)
 
unsigned int frag (void) const
 
unsigned int channel (void) const
 
unsigned int adc (void) const
 
float amplitude (void) const
 
float time (void) const
 
float quality (void) const
 
void set (unsigned int channel, unsigned int adc, float amplitude, float time, float quality)
 
void set (int frag, unsigned int channel, unsigned int adc, float amplitude, float time, float quality)
 

Private Attributes

int m_frag
 
unsigned int m_channel
 
unsigned int m_adc
 
float m_amplitude
 
float m_time
 
float m_quality
 

Detailed Description

Definition at line 17 of file TileFastRawChannel.h.

Constructor & Destructor Documentation

◆ TileFastRawChannel() [1/3]

TileFastRawChannel::TileFastRawChannel ( )
inline

Definition at line 20 of file TileFastRawChannel.h.

21  : m_frag(-1)
22  , m_channel(0)
23  , m_adc(0)
24  , m_amplitude(0.0F)
25  , m_time(0.0F)
26  , m_quality(0.0) {
27  }

◆ TileFastRawChannel() [2/3]

TileFastRawChannel::TileFastRawChannel ( unsigned int  channel,
unsigned int  adc,
float  amplitude,
float  time,
float  quality 
)
inline

Definition at line 29 of file TileFastRawChannel.h.

34  : m_frag(-1)
36  , m_adc(adc)
38  , m_time(time)
40  {
41  }

◆ TileFastRawChannel() [3/3]

TileFastRawChannel::TileFastRawChannel ( int  frag,
unsigned int  channel,
unsigned int  adc,
float  amplitude,
float  time,
float  quality 
)
inline

Definition at line 43 of file TileFastRawChannel.h.

49  : m_frag(frag)
51  , m_adc(adc)
53  , m_time(time)
55  {
56  }

Member Function Documentation

◆ adc()

unsigned int TileFastRawChannel::adc ( void  ) const
inline

Definition at line 67 of file TileFastRawChannel.h.

67  {
68  return m_adc;
69  }

◆ amplitude()

float TileFastRawChannel::amplitude ( void  ) const
inline

Definition at line 71 of file TileFastRawChannel.h.

71  {
72  return m_amplitude;
73  }

◆ channel()

unsigned int TileFastRawChannel::channel ( void  ) const
inline

Definition at line 63 of file TileFastRawChannel.h.

63  {
64  return m_channel;
65  }

◆ frag()

unsigned int TileFastRawChannel::frag ( void  ) const
inline

Definition at line 59 of file TileFastRawChannel.h.

59  {
60  return m_frag;
61  }

◆ quality()

float TileFastRawChannel::quality ( void  ) const
inline

Definition at line 79 of file TileFastRawChannel.h.

79  {
80  return m_quality;
81  }

◆ set() [1/2]

void TileFastRawChannel::set ( int  frag,
unsigned int  channel,
unsigned int  adc,
float  amplitude,
float  time,
float  quality 
)
inline

Definition at line 93 of file TileFastRawChannel.h.

94  {
95  m_frag = frag;
97  m_adc = adc;
99  m_time = time;
100  m_quality = quality;
101  }

◆ set() [2/2]

void TileFastRawChannel::set ( unsigned int  channel,
unsigned int  adc,
float  amplitude,
float  time,
float  quality 
)
inline

Definition at line 83 of file TileFastRawChannel.h.

84  {
85  m_frag = -1;
87  m_adc = adc;
89  m_time = time;
91  }

◆ time()

float TileFastRawChannel::time ( void  ) const
inline

Definition at line 75 of file TileFastRawChannel.h.

75  {
76  return m_time;
77  }

Member Data Documentation

◆ m_adc

unsigned int TileFastRawChannel::m_adc
private

Definition at line 106 of file TileFastRawChannel.h.

◆ m_amplitude

float TileFastRawChannel::m_amplitude
private

Definition at line 107 of file TileFastRawChannel.h.

◆ m_channel

unsigned int TileFastRawChannel::m_channel
private

Definition at line 105 of file TileFastRawChannel.h.

◆ m_frag

int TileFastRawChannel::m_frag
private

Definition at line 104 of file TileFastRawChannel.h.

◆ m_quality

float TileFastRawChannel::m_quality
private

Definition at line 109 of file TileFastRawChannel.h.

◆ m_time

float TileFastRawChannel::m_time
private

Definition at line 108 of file TileFastRawChannel.h.


The documentation for this class was generated from the following file:
TileFastRawChannel::adc
unsigned int adc(void) const
Definition: TileFastRawChannel.h:67
TileFastRawChannel::time
float time(void) const
Definition: TileFastRawChannel.h:75
TileFastRawChannel::frag
unsigned int frag(void) const
Definition: TileFastRawChannel.h:59
TileFastRawChannel::channel
unsigned int channel(void) const
Definition: TileFastRawChannel.h:63
TileFastRawChannel::m_time
float m_time
Definition: TileFastRawChannel.h:108
TileFastRawChannel::quality
float quality(void) const
Definition: TileFastRawChannel.h:79
TileFastRawChannel::m_amplitude
float m_amplitude
Definition: TileFastRawChannel.h:107
TileFastRawChannel::m_channel
unsigned int m_channel
Definition: TileFastRawChannel.h:105
TileFastRawChannel::m_frag
int m_frag
Definition: TileFastRawChannel.h:104
TileFastRawChannel::amplitude
float amplitude(void) const
Definition: TileFastRawChannel.h:71
TileFastRawChannel::m_adc
unsigned int m_adc
Definition: TileFastRawChannel.h:106
F
#define F(x, y, z)
Definition: MD5.cxx:112
TileFastRawChannel::m_quality
float m_quality
Definition: TileFastRawChannel.h:109