]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLoader.h
Updated comments for Doxygen
[u/mrichter/AliRoot.git] / MUON / AliMUONLoader.h
CommitLineData
3fa6cfdd 1#ifndef ALIMUONLOADER_H
2#define ALIMUONLOADER_H
3
692de412 4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
50837721 6
7/* $Id$ */
30178c30 8// Revision of includes 07/05/2004
692de412 9//
10/// \ingroup base
090443dd 11/// \class AliMUONLoader
585d648a 12/// \brief Implements AliLoader for MUON subsystem
13///
14/// \author Gines Martinez
50837721 15
3fa6cfdd 16#include "AliLoader.h"
3fa6cfdd 17
6309cf6e 18class AliMUONData;
19
1a1cdff8 20
53af523e 21class AliMUONLoader : public AliLoader
22{
23 public:
3fa6cfdd 24 AliMUONLoader();
25 AliMUONLoader(const Char_t *detname,const Char_t *eventfoldername); //contructor with name of the top folder of the tree
26 AliMUONLoader(const Char_t *detname,TFolder* eventfolder);
3fa6cfdd 27 virtual ~AliMUONLoader();
6309cf6e 28
202efbcb 29 void SetMUONData(AliMUONData * MUONData);
30 AliMUONData * GetMUONData();
1a1cdff8 31
53af523e 32 protected:
11ca64ac 33 AliMUONLoader(const AliMUONLoader& rhs);
34 AliMUONLoader& operator=(const AliMUONLoader& rhs);
35
18b6b8c7 36 AliMUONData * fMUONData; ///< data for MUON subsystem
53af523e 37
38 private:
3fa6cfdd 39 //descendant classes should
40 //use protected interface methods to access these folders
41
42 /**********************************************/
43 /*********** P U B L I C **************/
44 /********* S T A T I C ************/
45 /********* METHODS ************/
46 /********* They are used by ************/
47 /*********** AliRunLoader as well**************/
48 /**********************************************/
6309cf6e 49
53af523e 50 ClassDef(AliMUONLoader,1)
51};
3fa6cfdd 52
53#endif