]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONLoader.cxx
Incrementing class version
[u/mrichter/AliRoot.git] / MUON / AliMUONLoader.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18
19 //Root includes
20
21 //AliRoot includes
22 #include "AliMUONLoader.h"
23 #include "AliMUONConstants.h"
24
25 ClassImp(AliMUONLoader)
26 //___________________________________________________________________
27 AliMUONLoader::AliMUONLoader()
28   : AliLoader(),
29     fMUONData(0)
30 {
31 //default constructor
32 }
33 //_______________________________________________________________________________
34 AliMUONLoader::AliMUONLoader(const Char_t* detname,const Char_t* eventfoldername)
35   : AliLoader(detname,eventfoldername),
36     fMUONData(0)
37 {
38 }
39 //_______________________________________________________________________________
40 AliMUONLoader::AliMUONLoader(const Char_t * detname,TFolder* eventfolder)
41   : AliLoader(detname,eventfolder),
42   fMUONData(0)
43 {
44 //constructor
45 }
46 //_______________________________________________________________________________
47 AliMUONLoader::~AliMUONLoader()
48 {
49 //detructor 
50 }
51 //_______________________________________________________________________________
52 void AliMUONLoader::SetMUONData(AliMUONData * MUONData)
53 {
54   fMUONData = MUONData;
55 }
56 //_______________________________________________________________________________
57 AliMUONData * AliMUONLoader::GetMUONData()
58 {
59   return fMUONData;
60 }
61