]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROLoader.h
Replacing array of objects by array of pointers
[u/mrichter/AliRoot.git] / VZERO / AliVZEROLoader.h
CommitLineData
f359b593 1#ifndef ALIVZEROLOADER_H
2#define ALIVZEROLOADER_H
4dbb3fd3 3
b2501ea3 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/////////////////////////////////////////////////////////////////////
4dbb3fd3 12
13#include <AliLoader.h>
14
15class AliVZEROLoader: public AliLoader
16 {
17 public:
18 AliVZEROLoader();
19 AliVZEROLoader(const Char_t *name,const Char_t *topfoldername);
b2501ea3 20 AliVZEROLoader(const Char_t *name,TFolder *topfolder);
21 virtual ~AliVZEROLoader();
4dbb3fd3 22
23 private:
b2501ea3 24 static const TString fgkDefaultHitsFileName; // Default Name for hit file
25 static const TString fgkDefaultDigitsFileName;// Default Name for digit file
4dbb3fd3 26
b2501ea3 27 ClassDef(AliVZEROLoader,1)
4dbb3fd3 28 };
29
30#endif