PPM-DU analysis  2.3
conversion and analysis of the PPM-DU data
 All Classes Files Functions Variables Pages
/home/alex/Work/Research/Km3NeT/PPM-DU/ppm-du-v2.3/signal.h
Go to the documentation of this file.
1 #ifndef _signal_h_
2 #define _signal_h_
3 
30 class signal {
31  public:
32 
33  signal() :
34  fStart(0),
35  fDuration(0)
36  { }
37 
38  signal(const long long int start, const int duration) :
39  fStart(start),
40  fDuration(duration)
41  { }
42 
44  const long long int GetStart() const { return fStart; }
46  void SetStart(const long long int s) { fStart = s; }
48  const int GetDuration() const { return fDuration; }
50  void SetDuration(const int d) { fDuration = d; }
51 
52  private:
53  long long int fStart;
54  int fDuration;
55 };
56 
57 #endif
signal()
Definition: signal.h:33
const long long int GetStart() const
get the start time of the signal
Definition: signal.h:44
signal(const long long int start, const int duration)
Definition: signal.h:38
define the pmt signal
Definition: signal.h:30
void SetDuration(const int d)
set the duration of the signal
Definition: signal.h:50
const int GetDuration() const
get the duration of the signal
Definition: signal.h:48
void SetStart(const long long int s)
set the start time of the signal
Definition: signal.h:46