]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliDetectorRecoParam.h
A new method DrawPMDModule is added
[u/mrichter/AliRoot.git] / STEER / AliDetectorRecoParam.h
CommitLineData
242b332c 1#ifndef ALIDETECTORRECOPARAM_H
2#define ALIDETECTORRECOPARAM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6///////////////////////////////////////////////////////////////////////////////
7// //
8// Base Class for Detector reconstruction parameters //
9// //
10///////////////////////////////////////////////////////////////////////////////
11
12
13#include "TNamed.h"
14
15class AliDetectorRecoParam : public TNamed
16{
17
18 public:
19 AliDetectorRecoParam();
20 virtual ~AliDetectorRecoParam();
25e9a628 21 void Print(Option_t */*option*/) const {Dump();}
242b332c 22 const Int_t * GetEventType() { return fEventType;}
23protected:
24 Int_t fEventType[5]; // Reconstruction - event type
25
26 ClassDef(AliDetectorRecoParam, 1)
27};
28
29
30#endif