]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/Cal/AliTRDCalTrapConfig.h
- coverity fixes
[u/mrichter/AliRoot.git] / TRD / Cal / AliTRDCalTrapConfig.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 #ifndef ALITRDCALTRAPCONFIG
5 #define ALITRDCALTRAPCONFIG
6
7 #include "TObject.h"
8 #include "TList.h"
9
10 #include "AliTRDtrapConfig.h"
11
12 class AliTRDCalTrapConfig : public TObject
13 {
14 public:
15   AliTRDCalTrapConfig();
16   ~AliTRDCalTrapConfig();
17
18   void Add(AliTRDtrapConfig *cfg) { fConfigList.Add(cfg); }
19
20   virtual void Print(Option_t *option = "") const;
21
22   AliTRDtrapConfig* Get(const TString &name) const;
23
24 protected:
25   TList fConfigList;
26
27   ClassDef(AliTRDCalTrapConfig, 1);
28 };
29
30 #endif