source: trunk/MagicSoft/Mars/mhvstime/MHPixVsTime.h@ 5111

Last change on this file since 5111 was 4891, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 1.3 KB
Line 
1#ifndef MARS_MHPixVsTime
2#define MARS_MHPixVsTime
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7
8#ifndef ROOT_TGraphErrors
9#include <TGraphErrors.h>
10#endif
11
12class MHCamera;
13class MCamEvent;
14class MGeomCam;
15
16class MRawEvtHeader;
17class MTime;
18
19class MHPixVsTime : public MH
20{
21private:
22 static const TString gsDefName;
23 static const TString gsDefTitle;
24
25 TGraphErrors *fGraph;
26 Int_t fIndex;
27
28 MCamEvent *fEvt; //! the current event
29 MGeomCam *fCam; //! the camera geometry
30
31 MRawEvtHeader *fHeader; //!
32 MTime *fTime; //!
33
34 TString fNameEvt;
35 TString fNameTime;
36
37 Int_t fType;
38 Int_t fTypeErr;
39
40 Bool_t SetupFill(const MParList *pList);
41 Bool_t Fill(const MParContainer *par, const Stat_t w=1);
42
43public:
44 MHPixVsTime(Int_t idx=0, const char *name=NULL, const char *title=NULL);
45 ~MHPixVsTime();
46
47 void SetNameEvt(const TString name) { fNameEvt = name; }
48 void SetNameTime(const TString name) { fNameTime = name; }
49 void SetType(Int_t type, Int_t e=-1) { fType = type; fTypeErr=e; }
50
51 void SetName(const char *name);
52 void SetTitle(const char *title);
53
54 TH1 *GetHistByName(const TString name="");
55 TGraph *GetGraph() { return fGraph; }
56
57 void Draw(Option_t *o=NULL);
58
59 ClassDef(MHPixVsTime, 1) // Histogram to sum camera events
60};
61
62#endif
63
64
65
Note: See TracBrowser for help on using the repository browser.