]> git.uio.no Git - u/mrichter/AliRoot.git/blob - VZERO/AliVZEROLoader.h
Fixed violations
[u/mrichter/AliRoot.git] / VZERO / AliVZEROLoader.h
1 #ifndef ALIVZEROLOADER_H
2 #define ALIVZEROLOADER_H
3
4 //base class for loaders 
5 //loader is common for reading data for all detectors
6 //Each detector has a loader data member
7 //loader is accessible via folder structure as well
8
9 #include <AliLoader.h>
10
11 class AliVZEROLoader: public AliLoader
12  {
13    public:
14     AliVZEROLoader();
15     AliVZEROLoader(const Char_t *name,const Char_t *topfoldername);
16     AliVZEROLoader(const Char_t *name,TFolder *topfolder);
17     
18     virtual ~AliVZEROLoader(){};//-----------------
19
20    protected:
21
22
23    private:
24     static const TString fgkDefaultHitsFileName;
25     static const TString fgkDefaultDigitsFileName;
26
27    public:
28      ClassDef(AliVZEROLoader,1)
29  };
30  
31 #endif