Line data Source code
1 : /// \class AliTPCLoader
2 :
3 : /**************************************************************************
4 : * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 : * *
6 : * Author: The ALICE Off-line Project. *
7 : * Contributors are mentioned in the code where appropriate. *
8 : * *
9 : * Permission to use, copy, modify and distribute this software and its *
10 : * documentation strictly for non-commercial purposes is hereby granted *
11 : * without fee, provided that the above copyright notice appears in all *
12 : * copies and that both the copyright notice and this permission notice *
13 : * appear in the supporting documentation. The authors make no claims *
14 : * about the suitability of this software for any purpose. It is *
15 : * provided "as is" without express or implied warranty. *
16 : **************************************************************************/
17 :
18 :
19 : #include "AliTPCLoader.h"
20 : #include "AliLog.h"
21 :
22 24 : const TString AliTPCLoader::fgkDefaultHitsFileName = "TPC.Hits.root";
23 24 : const TString AliTPCLoader::fgkDefaultSDigitsFileName = "TPC.SDigits.root";
24 24 : const TString AliTPCLoader::fgkDefaultDigitsFileName = "TPC.Digits.root";
25 24 : const TString AliTPCLoader::fgkDefaultRecPointsFileName = "TPC.RecPoints.root";
26 24 : const TString AliTPCLoader::fgkDefaultTracksFileName = "TPC.Tracks.root";
27 :
28 :
29 : /// \cond CLASSIMP
30 24 : ClassImp(AliTPCLoader)
31 : /// \endcond
32 13 : AliTPCLoader::AliTPCLoader()
33 65 : {
34 26 : }
35 : /*****************************************************************************/
36 : AliTPCLoader::AliTPCLoader(const Char_t *name,const Char_t *topfoldername)
37 1 : :AliLoader(name,topfoldername)
38 5 : {
39 5 : AliDebug(1,Form("Name = %s; topfolder = %s",name,topfoldername));
40 2 : }
41 : /*****************************************************************************/
42 :
43 : AliTPCLoader::AliTPCLoader(const Char_t *name,TFolder *topfolder)
44 1 : :AliLoader(name,topfolder)
45 5 : {
46 2 : }
47 :
|