GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TYYYRawEvent.h
Go to the documentation of this file.
1 // $Id: TYYYRawEvent.h 478 2009-10-29 12:26:09Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #ifndef TYYYRAWEVENT_H
15 #define TYYYRAWEVENT_H
16 
17 #include "TGo4EventElement.h"
18 
24 
25  public:
26 
27  TYYYRawEvent();
28 
29  TYYYRawEvent(const char* name);
30 
31  virtual ~TYYYRawEvent();
32 
37  virtual void Clear(Option_t *t="");
38 
40  void ReAllocate(Int_t newsize);
41 
42  void PrintEvent();
43 
44  Int_t GetColumns() const { return fiColumns; }
45 
46  /* Number of columns read from the file (used values for this event) */
47  Int_t fiColumns;
48 
49  Double_t * fdData; //[fiColumns]
50 
51  Int_t fiAllocated;
52 
53  ClassDef(TYYYRawEvent,1)
54 };
55 
56 #endif //TYYYRAWEVENT_H
void ReAllocate(Int_t newsize)
virtual void Clear(Option_t *t="")
Int_t GetColumns() const
Definition: TYYYRawEvent.h:44
void PrintEvent()
virtual ~TYYYRawEvent()
Double_t * fdData
Definition: TYYYRawEvent.h:49
Int_t fiAllocated
Definition: TYYYRawEvent.h:51
Int_t fiColumns
Definition: TYYYRawEvent.h:47