]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSClusterizer.cxx
Enable creation of fast rec points for ITS, when input argument for ITS = 2.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSClusterizer.cxx
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$ */
17
18 //_________________________________________________________________________
19 //  Base class for the clusterization algorithm (pure abstract)
20 //*--
21 //*-- Author: Yves Schutz  SUBATECH 
22 //////////////////////////////////////////////////////////////////////////////
23
24 // --- ROOT system ---
25 #include "TGeometry.h"
26 #include "TDirectory.h"
27 #include "TFile.h"
28 #include "TTree.h"
29
30
31 // --- Standard library ---
32 #include <iostream.h>
33 #include <stdlib.h>   
34
35 // --- AliRoot header files ---
36 #include "AliRun.h" 
37 #include "AliPHOSClusterizer.h"
38 #include "AliHeader.h" 
39
40 ClassImp(AliPHOSClusterizer)
41
42 //____________________________________________________________________________
43   AliPHOSClusterizer::AliPHOSClusterizer():TTask("","")
44 {
45   // ctor
46   fSplitFile= 0 ; 
47 }
48
49 //____________________________________________________________________________
50 AliPHOSClusterizer::AliPHOSClusterizer(const char* headerFile, const char* name):
51 TTask(name, headerFile)
52 {
53   // ctor
54   fSplitFile= 0 ; 
55
56 }
57
58 //____________________________________________________________________________
59 AliPHOSClusterizer::~AliPHOSClusterizer()
60 {
61   // dtor
62          
63   fSplitFile = 0 ; ;
64 }
65
66 //____________________________________________________________________________
67 void AliPHOSClusterizer::SetSplitFile(const TString splitFileName) 
68 {
69   // Diverts the RecPoints in a file separate from the Digits file
70   
71
72   TDirectory * cwd = gDirectory ;
73   fSplitFile = gAlice->InitTreeFile("R",splitFileName.Data());
74   fSplitFile->cd() ; 
75   gAlice->Write(0, TObject::kOverwrite);
76
77   TTree *treeE  = gAlice->TreeE();
78   if (!treeE) {
79     cerr << "ERROR: AliPHOSClusterizer::SetSplitFile -> No TreeE found "<<endl;
80     abort() ;
81   }      
82   
83   // copy TreeE
84   AliHeader *header = new AliHeader();
85   treeE->SetBranchAddress("Header", &header);
86   treeE->SetBranchStatus("*",1);
87   TTree *treeENew =  treeE->CloneTree();
88   treeENew->Write(0, TObject::kOverwrite);
89     
90   // copy AliceGeom
91   TGeometry *AliceGeom = static_cast<TGeometry*>(cwd->Get("AliceGeom"));
92   if (!AliceGeom) {
93     cerr << "ERROR: AliPHOSClusterizer::SetSplitFile -> AliceGeom was not found in the input file "<<endl;
94     abort() ;
95   }
96   AliceGeom->Write(0, TObject::kOverwrite);
97   
98   gAlice->MakeTree("R", fSplitFile);
99   cwd->cd() ; 
100   cout << "INFO: AliPHOSClusterizer::SetSPlitMode -> RecPoints will be stored in " << splitFileName.Data() << endl ;   
101 }