]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONLoader.cxx
Bug in AliMUONHit constructor for fPz and fPx calculation (Arthur, Bruce and 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
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(const AliMUONLoader& rhs)
48   : AliLoader(rhs)
49 {
50 // Protected copy constructor
51
52   Fatal("AliMUONLoader", "Not implemented.");
53 }
54
55 //_______________________________________________________________________________
56 AliMUONLoader::~AliMUONLoader()
57 {
58 //detructor 
59 }
60 //-------------------------------------------------------------------
61 AliMUONLoader&  
62 AliMUONLoader::operator=(const AliMUONLoader& rhs)
63 {
64 // Protected assignement operator
65
66   if (this == &rhs) return *this;
67
68   Fatal("operator=", "Not implemented.");
69     
70   return *this;  
71 }    
72           
73 //_______________________________________________________________________________
74 void AliMUONLoader::SetMUONData(AliMUONData * MUONData)
75 {
76   fMUONData = MUONData;
77 }
78 //_______________________________________________________________________________
79 AliMUONData * AliMUONLoader::GetMUONData()
80 {
81   return fMUONData;
82 }
83