]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLoader.cxx
Coding Convention Violations
[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}
1a1cdff8 46//_______________________________________________________________________________
3fa6cfdd 47AliMUONLoader::~AliMUONLoader()
48{
6309cf6e 49//detructor
3fa6cfdd 50}
1a1cdff8 51//_______________________________________________________________________________
202efbcb 52void AliMUONLoader::SetMUONData(AliMUONData * MUONData)
53{
54 fMUONData = MUONData;
55}
56//_______________________________________________________________________________
57AliMUONData * AliMUONLoader::GetMUONData()
58{
59 return fMUONData;
60}
128843d9 61