]> git.uio.no Git - u/mrichter/AliRoot.git/blob - VZERO/AliVZEROLoader.h
Added SetAlign() function for switching on/off alignement (Working week effort)
[u/mrichter/AliRoot.git] / VZERO / AliVZEROLoader.h
1 #ifndef ALIVZEROLOADER_H
2 #define ALIVZEROLOADER_H
3
4 /////////////////////////////////////////////////////////////////////
5 //                                                                 //
6 // Base class for VZEROloaders.                                    //                                          
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 AliVZEROLoader: public AliLoader
16  {
17    public:
18     AliVZEROLoader();
19     AliVZEROLoader(const Char_t *name,const Char_t *topfoldername);
20     AliVZEROLoader(const Char_t *name,TFolder *topfolder);    
21     virtual ~AliVZEROLoader();
22
23    private:
24     static const TString fgkDefaultHitsFileName;  // Default Name for hit file
25     static const TString fgkDefaultDigitsFileName;// Default Name for digit file
26
27    ClassDef(AliVZEROLoader,1)
28  };
29  
30 #endif