]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLoader.h
Corrected list of motif types for station2 (Ivana)
[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$ */
30178c30 20// Revision of includes 07/05/2004
50837721 21
3fa6cfdd 22#include "AliLoader.h"
3fa6cfdd 23
24//__________________________________________________________________
25/////////////////////////////////////////////////////////////////////
26// //
27// class AliMUONLoader //
28// //
29/////////////////////////////////////////////////////////////////////
30
6309cf6e 31class AliMUONData;
32
1a1cdff8 33
53af523e 34class AliMUONLoader : public AliLoader
35{
36 public:
3fa6cfdd 37 AliMUONLoader();
38 AliMUONLoader(const Char_t *detname,const Char_t *eventfoldername); //contructor with name of the top folder of the tree
39 AliMUONLoader(const Char_t *detname,TFolder* eventfolder);
3fa6cfdd 40 virtual ~AliMUONLoader();
6309cf6e 41
202efbcb 42 void SetMUONData(AliMUONData * MUONData);
43 AliMUONData * GetMUONData();
1a1cdff8 44
53af523e 45 protected:
11ca64ac 46 AliMUONLoader(const AliMUONLoader& rhs);
47 AliMUONLoader& operator=(const AliMUONLoader& rhs);
48
53af523e 49 AliMUONData * fMUONData; // data for MUON subsystem
50
51 private:
3fa6cfdd 52 //descendant classes should
53 //use protected interface methods to access these folders
54
55 /**********************************************/
56 /*********** P U B L I C **************/
57 /********* S T A T I C ************/
58 /********* METHODS ************/
59 /********* They are used by ************/
60 /*********** AliRunLoader as well**************/
61 /**********************************************/
6309cf6e 62
53af523e 63 ClassDef(AliMUONLoader,1)
64};
3fa6cfdd 65
66#endif