-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathAliBCMLoader.h
33 lines (25 loc) · 1.14 KB
/
AliBCMLoader.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef ALIBCMLOADER_H
#define ALIBCMLOADER_H
/////////////////////////////////////////////////////////////////////
// //
// Base class for BCMloaders. //
// Loader provides base I/O facilities for standard data. //
// Each detector has a loader data member. //
// Loader is always accessible via folder structure as well. //
// //
/////////////////////////////////////////////////////////////////////
#include "AliLoader.h"
class AliBCMLoader: public AliLoader
{
public:
AliBCMLoader();
AliBCMLoader(const Char_t *name,const Char_t *topfoldername);
AliBCMLoader(const Char_t *name,TFolder *topfolder);
virtual ~AliBCMLoader() {};
AliBCMLoader & operator = (const AliBCMLoader & ) {return *this;}
private:
static const TString fgkDefaultHitsFileName; // Default Name for hit file
static const TString fgkDefaultDigitsFileName;// Default Name for digit file
ClassDef(AliBCMLoader,1)
};
#endif