]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLoader.cxx
Calculation of new variables needed for Non-id HBT added. (Z. Chajecki)
[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"
3fa6cfdd 24
25ClassImp(AliMUONLoader)
26//___________________________________________________________________
128843d9 27AliMUONLoader::AliMUONLoader()
28 : AliLoader(),
29 fMUONData(0)
3fa6cfdd 30{
31//default constructor
3fa6cfdd 32}
1a1cdff8 33//_______________________________________________________________________________
128843d9 34AliMUONLoader::AliMUONLoader(const Char_t* detname,const Char_t* eventfoldername)
35 : AliLoader(detname,eventfoldername),
36 fMUONData(0)
3fa6cfdd 37{
3fa6cfdd 38}
1a1cdff8 39//_______________________________________________________________________________
128843d9 40AliMUONLoader::AliMUONLoader(const Char_t * detname,TFolder* eventfolder)
41 : AliLoader(detname,eventfolder),
42 fMUONData(0)
3fa6cfdd 43{
44//constructor
3fa6cfdd 45}
11ca64ac 46//___________________________________________
47AliMUONLoader::AliMUONLoader(const AliMUONLoader& rhs)
48 : AliLoader(rhs)
49{
50// Protected copy constructor
51
52 Fatal("AliMUONLoader", "Not implemented.");
53}
54
1a1cdff8 55//_______________________________________________________________________________
3fa6cfdd 56AliMUONLoader::~AliMUONLoader()
57{
6309cf6e 58//detructor
3fa6cfdd 59}
11ca64ac 60//-------------------------------------------------------------------
61AliMUONLoader&
62AliMUONLoader::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
1a1cdff8 73//_______________________________________________________________________________
202efbcb 74void AliMUONLoader::SetMUONData(AliMUONData * MUONData)
75{
76 fMUONData = MUONData;
77}
78//_______________________________________________________________________________
79AliMUONData * AliMUONLoader::GetMUONData()
80{
81 return fMUONData;
82}
128843d9 83