]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLoader.cxx
Add/remove classes according to changes in MUON.
[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
d19b6003 18// -------------------------
19// Class AliMUONDataLoader
20// -------------------------
21// Implements AliLoader for MUON subsystem
22// Author: Gines Martinez
3fa6cfdd 23
3fa6cfdd 24#include "AliMUONLoader.h"
1a1cdff8 25#include "AliMUONConstants.h"
8c343c7c 26#include "AliLog.h"
3fa6cfdd 27
5398f946 28/// \cond CLASSIMP
3fa6cfdd 29ClassImp(AliMUONLoader)
5398f946 30/// \endcond
31
3fa6cfdd 32//___________________________________________________________________
128843d9 33AliMUONLoader::AliMUONLoader()
34 : AliLoader(),
35 fMUONData(0)
3fa6cfdd 36{
d19b6003 37/// Default constructor
3fa6cfdd 38}
1a1cdff8 39//_______________________________________________________________________________
128843d9 40AliMUONLoader::AliMUONLoader(const Char_t* detname,const Char_t* eventfoldername)
41 : AliLoader(detname,eventfoldername),
42 fMUONData(0)
3fa6cfdd 43{
5398f946 44/// Standard contructor with name of the top folder of the tree
3fa6cfdd 45}
1a1cdff8 46//_______________________________________________________________________________
128843d9 47AliMUONLoader::AliMUONLoader(const Char_t * detname,TFolder* eventfolder)
48 : AliLoader(detname,eventfolder),
5398f946 49 fMUONData(0)
3fa6cfdd 50{
d19b6003 51/// Constructor
3fa6cfdd 52}
11ca64ac 53
1a1cdff8 54//_______________________________________________________________________________
3fa6cfdd 55AliMUONLoader::~AliMUONLoader()
56{
d19b6003 57/// Destructor
3fa6cfdd 58}
11ca64ac 59
1a1cdff8 60//_______________________________________________________________________________
202efbcb 61void AliMUONLoader::SetMUONData(AliMUONData * MUONData)
62{
d19b6003 63/// Set MUON data
64
202efbcb 65 fMUONData = MUONData;
66}
67//_______________________________________________________________________________
68AliMUONData * AliMUONLoader::GetMUONData()
69{
d19b6003 70/// Get MUON data
71
202efbcb 72 return fMUONData;
73}
128843d9 74