]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLoader.cxx
Clean up, remove obselete methods (Ch. Finck)
[u/mrichter/AliRoot.git] / MUON / AliMUONLoader.cxx
CommitLineData
50837721 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$ */
3fa6cfdd 17
18
19//Root includes
20
21//AliRoot includes
22#include "AliMUONLoader.h"
1a1cdff8 23#include "AliMUONConstants.h"
8c343c7c 24#include "AliLog.h"
3fa6cfdd 25
26ClassImp(AliMUONLoader)
27//___________________________________________________________________
128843d9 28AliMUONLoader::AliMUONLoader()
29 : AliLoader(),
30 fMUONData(0)
3fa6cfdd 31{
32//default constructor
3fa6cfdd 33}
1a1cdff8 34//_______________________________________________________________________________
128843d9 35AliMUONLoader::AliMUONLoader(const Char_t* detname,const Char_t* eventfoldername)
36 : AliLoader(detname,eventfoldername),
37 fMUONData(0)
3fa6cfdd 38{
3fa6cfdd 39}
1a1cdff8 40//_______________________________________________________________________________
128843d9 41AliMUONLoader::AliMUONLoader(const Char_t * detname,TFolder* eventfolder)
42 : AliLoader(detname,eventfolder),
43 fMUONData(0)
3fa6cfdd 44{
45//constructor
3fa6cfdd 46}
11ca64ac 47//___________________________________________
48AliMUONLoader::AliMUONLoader(const AliMUONLoader& rhs)
49 : AliLoader(rhs)
50{
51// Protected copy constructor
52
8c343c7c 53 AliFatal("Not implemented.");
11ca64ac 54}
55
1a1cdff8 56//_______________________________________________________________________________
3fa6cfdd 57AliMUONLoader::~AliMUONLoader()
58{
6309cf6e 59//detructor
3fa6cfdd 60}
11ca64ac 61//-------------------------------------------------------------------
62AliMUONLoader&
63AliMUONLoader::operator=(const AliMUONLoader& rhs)
64{
65// Protected assignement operator
66
67 if (this == &rhs) return *this;
68
8c343c7c 69 AliFatal("Not implemented.");
11ca64ac 70
71 return *this;
72}
73
1a1cdff8 74//_______________________________________________________________________________
202efbcb 75void AliMUONLoader::SetMUONData(AliMUONData * MUONData)
76{
77 fMUONData = MUONData;
78}
79//_______________________________________________________________________________
80AliMUONData * AliMUONLoader::GetMUONData()
81{
82 return fMUONData;
83}
128843d9 84