]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARTvertex.cxx
Sample program for using the simple fast cluster finder.
[u/mrichter/AliRoot.git] / START / AliSTARTvertex.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 $Log$
17 Revision 1.7  2002/04/15 08:04:01  alla
18 Digits and reconstruction with TObject
19
20 Revision 1.6  2001/10/19 05:29:38  alla
21 bug in meduim fixed
22
23 Revision 1.5  2001/07/27 13:03:12  hristov
24 Default Branch split level set to 99
25
26 Revision 1.4  2000/12/22 16:17:15  hristov
27 Updated  START code from Alla
28
29 Revision 1.3  2000/10/02 21:28:13  fca
30 Removal of useless dependecies via forward declarations
31  
32 Revision 1.2  2000/07/13 16:41:29  fca
33 New START corrected for coding conventions
34
35 Revision 1.1  2000/03/24 17:46:58  alla
36 Vertex reconstruction
37
38 */ 
39 #include "TObject.h"
40 #include "AliSTARTvertex.h"
41 #include "AliSTARTdigit.h"
42 #include "AliSTARThit.h"
43 #include "AliSTART.h"
44 #include "AliRun.h"
45 #include "AliMC.h"
46
47 //#include "TTree.h"
48 #include "TDirectory.h"
49 #include <stdlib.h>
50 #include <iostream.h>
51 #include <fstream.h>
52
53 ClassImp(AliSTARTvertex)
54
55 AliSTARTvertex::AliSTARTvertex( Int_t * Zposit)
56 {
57   //
58   //     The creator for the AliSTARTvertex class. This routine fills the
59   // AliSTARTvertex data members from the array vertex.
60   // The order of the elements in the vertex array are
61   //  fZposition = vertex[0],
62   //
63
64   Zposit = &fZposition ;
65 }
66
67 void AliSTARTvertex::Reconstruct(Int_t evNumber=1) 
68 {
69   /***************************************************
70   Resonstruct digits to vertex position
71   ****************************************************/
72
73   Int_t timediff;
74   Float_t timePs;
75   char nameTD[8],nameTR[8];
76
77   AliSTARTdigit *digits;
78   AliSTARTvertex *fvertex;
79  
80   digits = new AliSTARTdigit();
81   fvertex = new AliSTARTvertex();
82
83  // Event ------------------------- LOOP  
84    
85   gAlice->GetEvent(evNumber);
86
87   sprintf(nameTD,"START_D_%d",evNumber);
88   TObject *td = (TObject*)gDirectory->Get(nameTD);
89   printf("%s\n",nameTD);
90   
91   if (!td) {
92     cerr<<"something wrong with output...."<<endl;
93     exit(111);
94   }
95   td->Read(nameTD);
96   digits->Read(nameTD);
97   digits->Dump();
98   if(digits->GetTime()!=999999)
99     {
100       timediff=digits->GetTime();     //time in number of channels
101       timePs=(timediff-128)*10.;       // time in Ps channel_width =10ps
102       Float_t c = 299792458/1.e9;  //speed of light cm/ps
103       //Float_t c = 0.3;  //speed of light mm/ps
104       Float_t Zposit=timePs*c;// for 0 vertex
105       cout<<" Zposit "<<Zposit<<endl;
106       fvertex->Set((Int_t) Zposit);
107       }
108     TTree *outTree = gAlice->TreeR();
109     if (!outTree) {
110       cerr<<"something wrong with output...."<<endl;
111       exit(111);
112     }
113     TTree *outTreeR = gAlice->TreeR();
114     if (!outTreeR) {
115       cerr<<"something wrong with output...."<<endl;
116       exit(111);
117     }
118   sprintf(nameTR,"START_R_%d",evNumber);
119   printf("%s\n",nameTR);
120     TDirectory *wd = gDirectory;
121     outTreeR->GetDirectory()->cd();
122     fvertex->Write(nameTR);
123     wd->cd();
124 }
125
126
127
128
129
130