]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ANALYSIS/AliAnalysisTaskTagCreator.cxx
remove unnecesary delete, rename some methods, remove prints
[u/mrichter/AliRoot.git] / ANALYSIS / AliAnalysisTaskTagCreator.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 #include <Riostream.h>
19
20 #include <TChain.h>
21 #include <TTree.h>
22 #include <TString.h>
23 #include <TFile.h>
24 #include <TSystem.h>
25
26 #include "AliAnalysisTaskTagCreator.h"
27 #include "AliAnalysisManager.h"
28 #include "AliESDEvent.h"
29 #include "AliAODEvent.h"
30 #include "AliESDInputHandler.h"
31 #include "AliAODHandler.h"
32 #include "AliRunTag.h"
33 #include "AliEventTag.h"
34 #include "AliAODTagCreator.h"
35 #include "AliLog.h"
36
37
38 ClassImp(AliAnalysisTaskTagCreator)
39
40 ////////////////////////////////////////////////////////////////////////
41
42 AliAnalysisTaskTagCreator::AliAnalysisTaskTagCreator():
43     AliAnalysisTaskSE(),
44     fCreateTags(kFALSE),
45     fFirstFile(kTRUE),
46     fRunTag(0), 
47     fTreeT(0),
48     fTagCreator(0),
49     fAODFileName(""),
50     fGUID(0)
51 {
52   // Default constructor
53 }
54
55 AliAnalysisTaskTagCreator::AliAnalysisTaskTagCreator(const char* name):
56     AliAnalysisTaskSE(name),
57     fCreateTags(kFALSE),
58     fFirstFile(kTRUE),
59     fRunTag(0), 
60     fTreeT(0),
61     fTagCreator(0),
62     fAODFileName(""),
63     fGUID(0)
64 {
65   // Constructor
66     DefineOutput(1, TTree::Class());    
67 }
68
69 void AliAnalysisTaskTagCreator::UserCreateOutputObjects()
70 {
71 // Create the output container
72     OpenFile(1);
73     fTreeT  = new TTree("T", "AOD Tags");
74     fRunTag = new AliRunTag();
75     TBranch * btag = fTreeT->Branch("AliTAG", "AliRunTag", &fRunTag);
76     btag->SetCompressionLevel(9);
77     fTagCreator = new AliAODTagCreator();
78 }
79
80 void AliAnalysisTaskTagCreator::Init()
81 {
82
83 }
84
85 void AliAnalysisTaskTagCreator::ConnectInputData(Option_t * /*option*/)
86 {
87     // Initialization
88     const char* turl = gSystem->Getenv("ALIEN_JDL_OUTPUTDIR");
89     TString sturl = turl;
90     
91     if (sturl.Length() != 0) {
92       fAODFileName = "alien://";
93       fAODFileName += turl;
94       fAODFileName += "/AliAOD.root";
95     }  
96 }
97
98 void AliAnalysisTaskTagCreator::UserExec(Option_t */*option*/)
99 {
100
101     // Create Tags for the current event
102     AliEventTag* evtTag = new AliEventTag();
103     fTagCreator->FillEventTag(AODEvent(), evtTag);
104     // Reference to the input file
105     TString fturl, fturltemp, guid;
106     
107     TString opt(fInputHandler->GetAnalysisType());
108     opt.ToLower();
109     
110     TFile *file = OutputTree()->GetCurrentFile();
111     const TUrl *url = file->GetEndpointUrl();
112     guid = file->GetUUID().AsString();
113     if (fAODFileName.Length() != 0) {
114         fturl = fAODFileName;
115         guid  = fGUID;
116     } else {
117         fturl = url->GetFile();
118     }
119
120     if (fRunTag->GetFileId(guid) == -1) {
121       AliFileTag *eftag = new AliFileTag();
122
123       eftag->SetGUID(guid);
124       if(fAODFileName.Length() != 0) {
125         eftag->SetMD5("");
126         eftag->SetTURL(fturl);
127         eftag->SetSize(0);
128       }
129       else eftag->SetPath(fturl);
130
131       fRunTag->AddFileTag(eftag);
132     }
133     //
134     // Add the event tag
135     fRunTag->AddEventTag(*evtTag);
136     PostData(1, fTreeT);
137 }
138
139
140 void AliAnalysisTaskTagCreator::FinishTaskOutput()
141 {
142 // Terminate analysis
143 //
144     if (fInputHandler->GetRunTag()) fRunTag->CopyStandardContent(fInputHandler->GetRunTag());       
145     fTreeT->Fill();
146 }
147
148 Bool_t AliAnalysisTaskTagCreator::Notify()
149 {
150     // Notify file change
151     fInputHandler = (AliInputEventHandler*) 
152       ((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
153     return kTRUE;
154 }
155
156
157 void AliAnalysisTaskTagCreator::GetGUID(TString &guid) {
158     // Get the guid of the AliAOD.root file
159     ofstream myfile ("guid.txt");
160     if (myfile.is_open()) {
161         TFile *f = TFile::Open("AliAOD.root","read");
162         if(f->IsOpen()) {
163             guid = f->GetUUID().AsString();
164             myfile << "AliAOD.root \t"<<f->GetUUID().AsString();
165             cout<<guid.Data()<<endl;
166             myfile.close();
167         }
168         else cout<<"Input file not found"<<endl;
169         f->Close();
170     }
171     else cout<<"Output file can't be created..."<<endl;
172 }
173
174
175
176 void AliAnalysisTaskTagCreator::Terminate(Option_t */*option*/)
177 {
178 // Terminate analysis
179 //
180     if (fDebug > 1) printf("AnalysisTagCreator: Terminate() \n");
181 }
182
183