source: trunk/MagicSoft/Mars/msignal/MArrivalTime.h@ 6706

Last change on this file since 6706 was 6038, checked in by gaug, 20 years ago
*** empty log message ***
File size: 1.3 KB
Line 
1#ifndef MARS_MArrivalTime
2#define MARS_MArrivalTime
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7#ifndef MARS_MCamEvent
8#include "MCamEvent.h"
9#endif
10
11#ifndef ROOT_TArrayF
12#include <TArrayF.h>
13#endif
14#ifndef ROOT_TArrayS
15#include <TArrayS.h>
16#endif
17
18class MRawEvtData;
19
20class MArrivalTime : public MParContainer, public MCamEvent
21{
22private:
23 TArrayF fData; // Stores the calibrated arrival times
24
25public:
26
27 MArrivalTime(const char *name=NULL, const char *title=NULL);
28 ~MArrivalTime() { }
29
30 void Reset();
31 void InitSize(const UInt_t i);
32
33 UInt_t GetSize() const { return fData.GetSize(); }
34
35 void SetTime(const Int_t i, const Float_t time);
36
37 const TArrayF &GetData() const { return fData; }
38
39 Double_t operator[](int i) { return fData[i]; }
40 Double_t operator[](int i) const { return fData[i]; }
41
42 void Print(Option_t *o="") const;
43
44 // Do not do such things! It is highly dangerous to use two very similar operators
45 // to do completely different things! People won't recognize it...
46 //Double_t operator()(int i) { return fDataErr[i]; }
47
48 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
49 void DrawPixelContent(Int_t num) const;
50
51 ClassDef(MArrivalTime, 2) // class for an event containing the arrival times
52};
53
54#endif
Note: See TracBrowser for help on using the repository browser.