]> git.uio.no Git - u/mrichter/AliRoot.git/blob - BCM/AliBCMLoader.h
PAR: includes from previously enabled PARfiles
[u/mrichter/AliRoot.git] / BCM / AliBCMLoader.h
1 #ifndef ALIBCMLOADER_H
2 #define ALIBCMLOADER_H
3
4 /////////////////////////////////////////////////////////////////////
5 //                                                                 //
6 // Base class for BCMloaders.                                      //
7 // Loader provides base I/O facilities for standard data.          //
8 // Each detector has a loader data member.                         //
9 // Loader is always accessible via folder structure as well.       // 
10 //                                                                 //
11 /////////////////////////////////////////////////////////////////////
12
13 #include "AliLoader.h"
14
15 class AliBCMLoader: public AliLoader
16  {
17    public:
18     AliBCMLoader();
19     AliBCMLoader(const Char_t *name,const Char_t *topfoldername);
20     AliBCMLoader(const Char_t *name,TFolder *topfolder);    
21     virtual ~AliBCMLoader() {};
22     
23     AliBCMLoader & operator = (const AliBCMLoader & ) {return *this;}
24     
25    private:
26     static const TString fgkDefaultHitsFileName;  // Default Name for hit file
27     static const TString fgkDefaultDigitsFileName;// Default Name for digit file
28
29    ClassDef(AliBCMLoader,1)
30       
31  };
32  
33 #endif