ATTPCROOT  0.3.0-alpha
A ROOT-based framework for analyzing data from active target detectors
GETCoboFrame.h
Go to the documentation of this file.
1 #ifndef GETCOBOFRAME
2 #define GETCOBOFRAME
3 
4 #include <Rtypes.h>
5 
6 #include "GETBasicFrame.h"
7 
8 #include <iosfwd>
9 
10 class TBuffer;
11 class TClass;
12 class TMemberInspector;
13 
14 class GETCoboFrame {
15 public:
16  GETCoboFrame();
17 
18  void ReadFrame(ifstream &stream);
19  void ReadFrame(Int_t index, ifstream &stream);
20 
21  Int_t GetEventID();
22  Int_t GetNumFrames();
24  GETBasicFrame *GetFrame(Int_t index);
25 
26  void Clear(Option_t * = "");
27 
28 private:
29  Int_t fNumFrames;
30  GETBasicFrame fFrame[4];
31 
32  ClassDef(GETCoboFrame, 1);
33 };
34 
35 #endif
GETCoboFrame::GetEventID
Int_t GetEventID()
Definition: GETCoboFrame.cxx:19
GETCoboFrame::GetNumFrames
Int_t GetNumFrames()
Definition: GETCoboFrame.cxx:30
GETCoboFrame::GETCoboFrame
GETCoboFrame()
Definition: GETCoboFrame.cxx:3
GETCoboFrame::Clear
void Clear(Option_t *="")
Definition: GETCoboFrame.cxx:43
GETBasicFrame
Definition: GETBasicFrame.h:14
GETCoboFrame::GetFrames
GETBasicFrame * GetFrames()
Definition: GETCoboFrame.cxx:34
GETBasicFrame.h
GETCoboFrame::GetFrame
GETBasicFrame * GetFrame(Int_t index)
Definition: GETCoboFrame.cxx:38
GETCoboFrame::ReadFrame
void ReadFrame(ifstream &stream)
Definition: GETCoboFrame.cxx:8
GETCoboFrame
Definition: GETCoboFrame.h:14