]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliDetectorEventHeader.h
Fixes for some mem-leaks: most changes where pretty basic (i.e. adding deletes).
[u/mrichter/AliRoot.git] / STEER / AliDetectorEventHeader.h
CommitLineData
b961264c 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>
16class AliDetectorEventHeader : public TNamed
17{
18 public:
19
20 AliDetectorEventHeader(const char* name);
21 AliDetectorEventHeader();
22 virtual ~AliDetectorEventHeader() {}
23protected:
24 ClassDef(AliDetectorEventHeader,0) // Event header for detectors
25};
26
27#endif