]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Updates.
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 12 May 2010 14:08:21 +0000 (14:08 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 12 May 2010 14:08:21 +0000 (14:08 +0000)
ANALYSIS/AliAnalysisTaskTagCreator.cxx
ANALYSIS/AliAnalysisTaskTagCreator.h

index 7ceeaef5a75ddb248e807e95c0f8e67dc9ab8013..7d4f4893f34a8d238bffa41858862f22c6a3b43c 100644 (file)
@@ -46,7 +46,8 @@ AliAnalysisTaskTagCreator::AliAnalysisTaskTagCreator():
     fRunTag(0), 
     fTreeT(0),
     fTagCreator(0),
-    fAODFileName("")
+    fAODFileName(""),
+    fGUID(0)
 {
   // Default constructor
 }
@@ -58,7 +59,8 @@ AliAnalysisTaskTagCreator::AliAnalysisTaskTagCreator(const char* name):
     fRunTag(0), 
     fTreeT(0),
     fTagCreator(0),
-    fAODFileName("")
+    fAODFileName(""),
+    fGUID(0)
 {
   // Constructor
     DefineOutput(1, TTree::Class());   
@@ -100,22 +102,22 @@ void AliAnalysisTaskTagCreator::UserExec(Option_t */*option*/)
     AliEventTag* evtTag = new AliEventTag();
     fTagCreator->FillEventTag(AODEvent(), evtTag);
     // Reference to the input file
-    TString fturl, fturltemp, fguid;
+    TString fturl, fturltemp, guid;
     
     TString opt(fInputHandler->GetAnalysisType());
     opt.ToLower();
     
     TFile *file = OutputTree()->GetCurrentFile();
     const TUrl *url = file->GetEndpointUrl();
-    fguid = file->GetUUID().AsString();
+    guid = file->GetUUID().AsString();
     if (fAODFileName.Length() != 0) {
        fturl = fAODFileName;
-       GetGUID(fguid);
+       guid  = fGUID;
     } else {
        fturl = url->GetFile();
     }
 
-    evtTag->SetGUID(fguid);
+    evtTag->SetGUID(guid);
     if(fAODFileName.Length() != 0) {
        evtTag->SetMD5("");
        evtTag->SetTURL(fturl);
@@ -142,14 +144,6 @@ Bool_t AliAnalysisTaskTagCreator::Notify()
     // Notify file change
     fInputHandler = (AliInputEventHandler*) 
       ((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
-
-    if (!fFirstFile) {
-       if (fInputHandler->GetRunTag()) fRunTag->CopyStandardContent(fInputHandler->GetRunTag());           
-       fTreeT->Fill();
-       fRunTag->Clear();
-    } else {
-       fFirstFile = kFALSE;
-    }
     return kTRUE;
 }
 
@@ -166,6 +160,7 @@ void AliAnalysisTaskTagCreator::GetGUID(TString &guid) {
            myfile.close();
        }
        else cout<<"Input file not found"<<endl;
+       f->Close();
     }
     else cout<<"Output file can't be created..."<<endl;
 }
index 7bd645efe70332980c2f0f9ef0d7e5d50b935ec0..077050dc30fc4ed150784848fe9b039c6c323e61 100644 (file)
@@ -39,7 +39,7 @@ class AliAnalysisTaskTagCreator : public AliAnalysisTaskSE
     TTree                   *fTreeT;                  //! tree for  aod tags
     AliAODTagCreator        *fTagCreator;             //! The tag creator
     TString                  fAODFileName;            //! Name of the AOD file
-    
+    TString                  fGUID;                   //! GUID of the AOD file
     ClassDef(AliAnalysisTaskTagCreator, 1); // Analysis task for standard ESD filtering
 };