StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
TResponseTable.h
1 // @(#)root/table:$Id$
2 // Author: Valery Fine(fine@bnl.gov) 30/06/2001
3 #ifndef ROOT_TResponseTable
4 #define ROOT_TResponseTable
5 
6 #include "TGenericTable.h"
7 
9 // //
10 // TResponseTable //
11 // //
13 
15 {
16  public:
18  TResponseTable(const char *name,const char *volumepath, const char *responseDefintion, Int_t allocSize);
19  virtual ~TResponseTable(){}
20  void SetResponse(int track, int *nvl, float *response);
21  static Int_t FindResponseLocation(TTableDescriptor &dsc);
22 
23  protected:
24  void AddVolumePath(const char *path);
25  void AddResponse(const char *chit);
26  void AddElement(const char *path,EColumnType type);
27  private:
28  Int_t fResponseLocation;
29 
30  ClassDef(TResponseTable,4) // Generic Geant detector response table
31 };
32 #endif
void SetResponse(int track, int *nvl, float *response)
void AddResponse(const char *chit)
to be documented
void AddElement(const char *path, EColumnType type)
to be documented
void AddVolumePath(const char *path)
to be documented
static Int_t FindResponseLocation(TTableDescriptor &dsc)
TResponseTable()
to be documented