source: trunk/MagicSoft/Cosy/main/MStargHistograms.h@ 8809

Last change on this file since 8809 was 7764, checked in by tbretz, 18 years ago
*** empty log message ***
File size: 1.2 KB
Line 
1#ifndef STARG_MStargHistograms
2#define STARG_MStargHistograms
3
4#include <TFile.h>
5
6class TTree;
7class MTime;
8class ZdAz;
9class Ring;
10class Led;
11class Leds;
12class MStarList;
13class ZdAz;
14
15class MStargHistograms
16{
17private:
18 TFile* fFile;
19 Double_t fEvtTime;
20 Double_t fZenithDist;
21 Double_t fAzimuth;
22 Double_t fNomZd;
23 Double_t fNomAz;
24 Double_t fdZd;
25 Double_t fdAz;
26 Double_t fOffsetX;
27 Double_t fOffsetY;
28 Double_t fCenterX;
29 Double_t fCenterY;
30 Double_t fStars;
31 Double_t fSpots;
32 Double_t fBright;
33// Double_t fCenterZd;
34// Double_t fCenterAz;
35 Double_t fStarZd;
36 Double_t fStarAz;
37
38
39public:
40 MStargHistograms() : fFile(NULL)
41 {
42
43 }
44
45 ~MStargHistograms()
46 {
47
48 }
49
50 void Fill(Leds &spots, MStarList &stars, ZdAz &d, ZdAz sao,
51 Ring &center, /*ZdAz &centerzdaz,*/ ZdAz &star, Double_t bright,
52 const ZdAz &pos, const MTime &t);
53
54 void OpenFile();
55 void CloseFile();
56
57 void InitHistograms();
58 void DeleteHistograms();
59 void ShowHistograms();
60 void ResetHistograms();
61
62};
63
64#endif
Note: See TracBrowser for help on using the repository browser.