ROOT logo
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */

#ifndef ALITRDCALTRAPCONFIG
#define ALITRDCALTRAPCONFIG

#include "TObject.h"
#include "TList.h"

#include "AliTRDtrapConfig.h"

class AliTRDCalTrapConfig : public TObject
{
public:
  AliTRDCalTrapConfig();
  ~AliTRDCalTrapConfig();

  void Add(AliTRDtrapConfig *cfg) { fConfigList.Add(cfg); }

  virtual void Print(Option_t *option = "") const;

  AliTRDtrapConfig* Get(const TString &name) const;

protected:
  TList fConfigList;

  ClassDef(AliTRDCalTrapConfig, 1);
};

#endif
 AliTRDCalTrapConfig.h:1
 AliTRDCalTrapConfig.h:2
 AliTRDCalTrapConfig.h:3
 AliTRDCalTrapConfig.h:4
 AliTRDCalTrapConfig.h:5
 AliTRDCalTrapConfig.h:6
 AliTRDCalTrapConfig.h:7
 AliTRDCalTrapConfig.h:8
 AliTRDCalTrapConfig.h:9
 AliTRDCalTrapConfig.h:10
 AliTRDCalTrapConfig.h:11
 AliTRDCalTrapConfig.h:12
 AliTRDCalTrapConfig.h:13
 AliTRDCalTrapConfig.h:14
 AliTRDCalTrapConfig.h:15
 AliTRDCalTrapConfig.h:16
 AliTRDCalTrapConfig.h:17
 AliTRDCalTrapConfig.h:18
 AliTRDCalTrapConfig.h:19
 AliTRDCalTrapConfig.h:20
 AliTRDCalTrapConfig.h:21
 AliTRDCalTrapConfig.h:22
 AliTRDCalTrapConfig.h:23
 AliTRDCalTrapConfig.h:24
 AliTRDCalTrapConfig.h:25
 AliTRDCalTrapConfig.h:26
 AliTRDCalTrapConfig.h:27
 AliTRDCalTrapConfig.h:28
 AliTRDCalTrapConfig.h:29
 AliTRDCalTrapConfig.h:30