Line data Source code
1 : #ifndef ALIDETECTOREVENTHEADER_H
2 : #define ALIDETECTOREVENTHEADER_H
3 :
4 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 : * See cxx source for full Copyright notice */
6 :
7 : /* $Id$ */
8 :
9 : //---------------------------------------------------------------------
10 : // Event header base class for detetors
11 : // Stores detector specific information
12 : // Author: andreas.morsch@cern.ch
13 : //---------------------------------------------------------------------
14 :
15 : #include <TNamed.h>
16 0 : class AliDetectorEventHeader : public TNamed
17 : {
18 : public:
19 :
20 : AliDetectorEventHeader(const char* name);
21 : AliDetectorEventHeader();
22 0 : virtual ~AliDetectorEventHeader() {}
23 : protected:
24 176 : ClassDef(AliDetectorEventHeader,0) // Event header for detectors
25 : };
26 :
27 : #endif
|