]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONRecLoader.h
commented logging message
[u/mrichter/AliRoot.git] / MUON / AliMUONRecLoader.h
1 #ifndef ALIMUONRECLOADER_H
2 #define ALIMUONRECLOADER_H
3
4 /*  Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8 // Revision of includes 07/05/2004
9 //
10 /// \ingroup rec
11 /// \class AliMUONRecLoader
12 /// \brief Implements AliLoader for MUON subsystem
13 ///
14 /// \author Gines Martinez
15
16 #include "AliLoader.h"
17
18 class AliMUONRecData;
19
20
21 class AliMUONRecLoader : public AliLoader 
22 {
23   public:
24     AliMUONRecLoader();
25     AliMUONRecLoader(const Char_t *detname,const Char_t *eventfoldername); //contructor with name of the top folder of the tree
26     AliMUONRecLoader(const Char_t *detname,TFolder* eventfolder);
27     virtual ~AliMUONRecLoader();
28
29     void              SetMUONData(AliMUONRecData * MUONData);
30     AliMUONRecData *  GetMUONData();
31  
32   protected:
33     /// Not implemented
34     AliMUONRecLoader(const AliMUONRecLoader& rhs);
35     /// Not implemented
36     AliMUONRecLoader& operator=(const AliMUONRecLoader& rhs);
37
38     AliMUONRecData * fMUONData; ///< data for MUON subsystem 
39
40   ClassDef(AliMUONRecLoader,1)
41 };
42
43 #endif