]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDInputHandler.cxx
AliMUONTriggerIO: Optimize I/O for binary LUT file
[u/mrichter/AliRoot.git] / STEER / AliESDInputHandler.cxx
CommitLineData
d3dd3d14 1/**************************************************************************
2 * Copyright(c) 1998-2007, 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// Event handler for ESD input
20// Author: Andreas Morsch, CERN
21//-------------------------------------------------------------------------
22
933fd60f 23#include <TTree.h>
300d5701 24#include <TString.h>
25#include <TObjString.h>
d3dd3d14 26
27#include "AliESDInputHandler.h"
28#include "AliESDEvent.h"
29#include "AliESD.h"
300d5701 30#include "AliLog.h"
d3dd3d14 31
32ClassImp(AliESDInputHandler)
33
34//______________________________________________________________________________
6989bff3 35AliESDInputHandler::AliESDInputHandler() :
36 AliInputEventHandler(),
0cd61c1d 37 fEvent(0x0),
38 fBranches("")
d3dd3d14 39{
40 // default constructor
41}
42
43//______________________________________________________________________________
44AliESDInputHandler::~AliESDInputHandler()
45{
6989bff3 46 // destructor
47 // delete fEvent;
d3dd3d14 48}
49
50//______________________________________________________________________________
51AliESDInputHandler::AliESDInputHandler(const char* name, const char* title):
300d5701 52 AliInputEventHandler(name, title), fEvent(0x0), fBranches("")
d3dd3d14 53{
54}
55
300d5701 56Bool_t AliESDInputHandler::Init(TTree* tree, Option_t* /*opt*/)
d3dd3d14 57{
300d5701 58 // Initialisation necessary for each new tree
59 fTree = tree;
60
6073f8c9 61 if (!fTree) return kFALSE;
d3dd3d14 62 // Get pointer to ESD event
300d5701 63 SwitchOffBranches();
3858dd64 64 SwitchOnBranches();
300d5701 65
60996693 66 if (fEvent) {
67 delete fEvent;
68 fEvent = 0;
6989bff3 69 }
60996693 70 fEvent = new AliESDEvent();
71
72 fEvent->ReadFromTree(fTree);
d3dd3d14 73 return kTRUE;
74}
75
ed97dc98 76Bool_t AliESDInputHandler::BeginEvent(Long64_t /*entry*/)
d3dd3d14 77{
78 // Copy from old to new format if necessary
d7749dec 79 AliESD* old = ((AliESDEvent*) fEvent)->GetAliESDOld();
80 if (old) {
d3dd3d14 81 ((AliESDEvent*)fEvent)->CopyFromOldESD();
82 old->Reset();
d7749dec 83 }
84 return kTRUE;
d3dd3d14 85}
86
6989bff3 87Bool_t AliESDInputHandler::FinishEvent(){
d7749dec 88 if(fEvent)fEvent->Reset();
6989bff3 89 return kTRUE;
90}
91
300d5701 92void AliESDInputHandler::SwitchOffBranches() const {
93 //
94 // Switch of branches on user request
3858dd64 95 TObjArray * tokens = fBranches.Tokenize(" ");
96 Int_t ntok = tokens->GetEntries();
97 for (Int_t i = 0; i < ntok; i++) {
98 TString str = ((TObjString*) tokens->At(i))->GetString();
99 if (str.Length() == 0)
100 continue;
101 fTree->SetBranchStatus(Form("%s%s%s","*", str.Data(), "*"), 0);
102 AliInfo(Form("Branch %s switched off \n", str.Data()));
103 }
104}
105
106void AliESDInputHandler::SwitchOnBranches() const {
107 //
108 // Switch of branches on user request
109 TObjArray * tokens = fBranchesOn.Tokenize(" ");
300d5701 110 Int_t ntok = tokens->GetEntries();
3858dd64 111
300d5701 112 for (Int_t i = 0; i < ntok; i++) {
3858dd64 113 TString str = ((TObjString*) tokens->At(i))->GetString();
114 if (str.Length() == 0)
115 continue;
116 fTree->SetBranchStatus(Form("%s%s%s","*", str.Data(), "*"), 1);
117 AliInfo(Form("Branch %s switched on \n", str.Data()));
300d5701 118 }
119}