]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliInputEventHandler.cxx
Small updates
[u/mrichter/AliRoot.git] / STEER / AliInputEventHandler.cxx
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 event input 
20 //     Author: Andreas Morsch, CERN
21 //-------------------------------------------------------------------------
22
23
24 #include "AliInputEventHandler.h"
25 #include "AliVEvent.h"
26 #include "AliLog.h"
27
28 ClassImp(AliInputEventHandler)
29
30 //______________________________________________________________________________
31 AliInputEventHandler::AliInputEventHandler() :
32     AliVEventHandler(),
33     fTree(0),
34     fBranches(""),
35     fBranchesOn(""),
36     fNewEvent(kTRUE)
37 {
38   // default constructor
39 }
40
41 //______________________________________________________________________________
42 AliInputEventHandler::~AliInputEventHandler() 
43 {
44 // destructor
45 }
46
47 //______________________________________________________________________________
48 AliInputEventHandler::AliInputEventHandler(const char* name, const char* title):
49   AliVEventHandler(name, title),
50   fTree(0),
51   fBranches(""),
52   fBranchesOn(""),
53   fNewEvent(kTRUE)
54 {
55 }
56
57 void AliInputEventHandler::SwitchOffBranches() const {
58   //
59   // Switch of branches on user request
60     TObjArray * tokens = fBranches.Tokenize(" ");
61     Int_t ntok = tokens->GetEntries();
62     for (Int_t i = 0; i < ntok; i++)  {
63         TString str = ((TObjString*) tokens->At(i))->GetString();
64         if (str.Length() == 0)
65             continue;
66         fTree->SetBranchStatus(Form("%s%s%s","*", str.Data(), "*"), 0);
67         AliInfo(Form("Branch %s switched off \n", str.Data()));
68     }
69 }
70
71 void AliInputEventHandler::SwitchOnBranches() const {
72   //
73   // Switch of branches on user request
74   TObjArray * tokens = fBranchesOn.Tokenize(" ");
75   Int_t ntok = tokens->GetEntries();
76
77   for (Int_t i = 0; i < ntok; i++)  {
78       TString str = ((TObjString*) tokens->At(i))->GetString();
79       if (str.Length() == 0)
80           continue;
81       fTree->SetBranchStatus(Form("%s%s%s","*", str.Data(), "*"), 1);
82       AliInfo(Form("Branch %s switched on \n", str.Data()));
83   }
84 }
85
86
87
88 Long64_t AliInputEventHandler::GetReadEntry() const 
89 {return fTree->GetReadEntry();}