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