source: trunk/Cosy/main/MStargHistograms.h@ 15942

Last change on this file since 15942 was 9435, checked in by tbretz, 15 years ago
*** empty log message ***
File size: 910 bytes
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
34public:
35 MStargHistograms() : fFile(NULL)
36 {
37 }
38
39 void Fill(Leds &spots, MStarList &stars, ZdAz &d, ZdAz sao,
40 Ring &center, Double_t bright,
41 const ZdAz &pos, const MTime &t);
42
43 void OpenFile();
44 void CloseFile();
45};
46
47#endif
Note: See TracBrowser for help on using the repository browser.