]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLoader.h
Moving lib*.pkg
[u/mrichter/AliRoot.git] / MUON / AliMUONLoader.h
CommitLineData
3fa6cfdd 1#ifndef ALIMUONLOADER_H
2#define ALIMUONLOADER_H
3
50837721 4/**************************************************************************
5 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
6 * *
7 * Author: The ALICE Off-line Project. *
8 * Contributors are mentioned in the code where appropriate. *
9 * *
10 * Permission to use, copy, modify and distribute this software and its *
11 * documentation strictly for non-commercial purposes is hereby granted *
12 * without fee, provided that the above copyright notice appears in all *
13 * copies and that both the copyright notice and this permission notice *
14 * appear in the supporting documentation. The authors make no claims *
15 * about the suitability of this software for any purpose. It is *
16 * provided "as is" without express or implied warranty. *
17 **************************************************************************/
18
19/* $Id$ */
20
3fa6cfdd 21#include "AliLoader.h"
3fa6cfdd 22
23//__________________________________________________________________
24/////////////////////////////////////////////////////////////////////
25// //
26// class AliMUONLoader //
27// //
28/////////////////////////////////////////////////////////////////////
29
6309cf6e 30class AliMUONData;
31
1a1cdff8 32
3fa6cfdd 33class AliMUONLoader : public AliLoader {
34 public:
35 AliMUONLoader();
36 AliMUONLoader(const Char_t *detname,const Char_t *eventfoldername); //contructor with name of the top folder of the tree
37 AliMUONLoader(const Char_t *detname,TFolder* eventfolder);
3fa6cfdd 38 virtual ~AliMUONLoader();
6309cf6e 39
202efbcb 40 void SetMUONData(AliMUONData * MUONData);
41 AliMUONData * GetMUONData();
1a1cdff8 42
3fa6cfdd 43 private:
44 //descendant classes should
45 //use protected interface methods to access these folders
46
47 /**********************************************/
48 /*********** P U B L I C **************/
49 /********* S T A T I C ************/
50 /********* METHODS ************/
51 /********* They are used by ************/
52 /*********** AliRunLoader as well**************/
53 /**********************************************/
54 public:
6309cf6e 55 AliMUONData * fMUONData; // data for MUON subsystem
56
3fa6cfdd 57 ClassDef(AliMUONLoader,1)
58 };
59
60#endif