CalibratedAnitaEvent.h
1 
9 #ifndef CALIBRATEDANITAEVENT_H
10 #define CALIBRATEDANITAEVENT_H
11 
12 //Includes
13 #include <TObject.h>
14 #include "RawAnitaEvent.h"
15 #include "AnitaConventions.h"
16 
17 class TGraph;
19 class UsefulAnitaEvent;
20 class PrettyAnitaHk;
21 class RawAnitaHeader;
22 
24 
29 {
30 
31  public:
34  virtual ~CalibratedAnitaEvent();
35 
36  //The calibrated numbers
37  // UInt_t fC3poNum; ///< Used to monitor the clock period... not read out in ANITA-3 :(
39  Int_t fRcoArray[NUM_SURF];
40  Double_t fTempFactorGuesses[NUM_SURF];
41  Double_t fClockPhiArray[NUM_SURF];
42  Int_t fClockProblem;
43  Int_t fClockSpike;
44  Int_t fRFSpike;
45 
46  ClassDef(CalibratedAnitaEvent,7);
47 };
48 
49 
50 #endif //CALIBRATEDANITAEVENT_H
Double_t fClockPhiArray[12]
An array to store the clock offsets.
enum WaveCalType::EWaveCalType WaveCalType_t
The calibration enumeration type.
PrettyAnitaHk – The prettified ANITA Hk.
Definition: PrettyAnitaHk.h:22
RawAnitaHeader – The Raw ANITA Event Header.
AnitaEventCalibrator – The ANITA Event Calibrator.
UsefulAnitaEvent – The Calibrated Useful Anita Event object.
Int_t fRcoArray[12]
An array to store the guessed at RCO values;.
CalibratedAnitaEvent – The Calibrated Calibrated Anita Event object.
WaveCalType::WaveCalType_t fCalType
The calibration type used.
virtual ~CalibratedAnitaEvent()
Destructor.
Double_t fTempFactorGuesses[12]
A holder variable to cling on to the temperature correction factor that we are guessing at...
CalibratedAnitaEvent()
Default constructor not used.
RawAnitaEvent – The Raw ANITA Event Data.
Definition: RawAnitaEvent.h:22