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

Last change on this file since 8862 was 8847, checked in by tbretz, 17 years ago
*** empty log message ***
File size: 1.1 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 void Fill(Leds &spots, MStarList &stars, ZdAz &d, ZdAz sao,
45 Ring &center, /*ZdAz &centerzdaz,*/ ZdAz &star, Double_t bright,
46 const ZdAz &pos, const MTime &t);
47
48 void OpenFile();
49 void CloseFile();
50
51 void InitHistograms();
52 void DeleteHistograms();
53 void ShowHistograms();
54 void ResetHistograms();
55
56};
57
58#endif
Note: See TracBrowser for help on using the repository browser.