HYDRA_development_version
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
hsuhldinfo.h
Go to the documentation of this file.
1 #ifndef HSUHLDFILEINFO_H
2 #define HSUHLDFILEINFO_H
3 #pragma interface
4 
5 // -----------------------------------------------------------------------------
6 
7 #include "TROOT.h"
8 #include "hldfilesource.h"
9 
10 // -----------------------------------------------------------------------------
11 
12 class HSUHldFileInfo : public HldFileSource
13 {
14 public:
15 
16  HSUHldFileInfo(const Text_t *psName, Bool_t bAutoProceed = kTRUE);
17  virtual ~HSUHldFileInfo() {}
18 
19  // -------------------------------------------------------------------------
20 
21  Int_t getEventsNumber(void) { return fEventNr; }
22  void proceed(void);
23  void print(void);
24 
25  // -------------------------------------------------------------------------
26 
27 private:
28 
30 
31  // -------------------------------------------------------------------------
32 
33  ClassDef(HSUHldFileInfo, 0) // info about the HLD file
34 };
35 
36 // -----------------------------------------------------------------------------
37 
38 #endif
Definition: hevent.h:17
Int_t getEventsNumber(void)
Definition: hsuhldinfo.h:21
HSUHldFileInfo(const Text_t *psName, Bool_t bAutoProceed=kTRUE)
Definition: hsuhldinfo.cc:16
void proceed(void)
Definition: hsuhldinfo.cc:53
HEvent * m_ppEvent
Definition: hsuhldinfo.h:29
void print(void)
Definition: hsuhldinfo.cc:45
virtual ~HSUHldFileInfo()
Definition: hsuhldinfo.h:17