]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliDetectorEventHeader.h
Changed the handling of the sources / blocks in the xmlRPC message
[u/mrichter/AliRoot.git] / STEER / AliDetectorEventHeader.h
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 class AliDetectorEventHeader : public TNamed
17 {
18  public:
19
20   AliDetectorEventHeader(const char* name);
21   AliDetectorEventHeader();
22   virtual ~AliDetectorEventHeader() {}
23 protected:
24   ClassDef(AliDetectorEventHeader,0) // Event header for detectors
25 };
26
27 #endif