]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROLoader.h
negative indexes allowed
[u/mrichter/AliRoot.git] / VZERO / AliVZEROLoader.h
CommitLineData
4dbb3fd3 1#ifndef ALIVZEROGETTER_H
2#define ALIVZEROGETTER_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
11class 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