]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONLoader.cxx
Global transformation correction (ivana)
[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 #include "AliLog.h"
25
26 ClassImp(AliMUONLoader)
27 //___________________________________________________________________
28 AliMUONLoader::AliMUONLoader()
29   : AliLoader(),
30     fMUONData(0)
31 {
32 //default constructor
33 }
34 //_______________________________________________________________________________
35 AliMUONLoader::AliMUONLoader(const Char_t* detname,const Char_t* eventfoldername)
36   : AliLoader(detname,eventfoldername),
37     fMUONData(0)
38 {
39 }
40 //_______________________________________________________________________________
41 AliMUONLoader::AliMUONLoader(const Char_t * detname,TFolder* eventfolder)
42   : AliLoader(detname,eventfolder),
43   fMUONData(0)
44 {
45 //constructor
46 }
47 //___________________________________________
48 AliMUONLoader::AliMUONLoader(const AliMUONLoader& rhs)
49   : AliLoader(rhs)
50 {
51 // Protected copy constructor
52
53   AliFatal("Not implemented.");
54 }
55
56 //_______________________________________________________________________________
57 AliMUONLoader::~AliMUONLoader()
58 {
59 //detructor 
60 }
61 //-------------------------------------------------------------------
62 AliMUONLoader&  
63 AliMUONLoader::operator=(const AliMUONLoader& rhs)
64 {
65 // Protected assignement operator
66
67   if (this == &rhs) return *this;
68
69   AliFatal("Not implemented.");
70     
71   return *this;  
72 }    
73           
74 //_______________________________________________________________________________
75 void AliMUONLoader::SetMUONData(AliMUONData * MUONData)
76 {
77   fMUONData = MUONData;
78 }
79 //_______________________________________________________________________________
80 AliMUONData * AliMUONLoader::GetMUONData()
81 {
82   return fMUONData;
83 }
84