]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/RESONANCES/AliRsnVariableExpression.cxx
Made a general review to fix as possible most coding conventions violations.
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnVariableExpression.cxx
1 //
2 // AliRsnVariableExpresion class is used
3 // to help AliRsnExpresion class
4 //
5 // authors: Martin Vala (martin.vala@cern.ch)
6 //          Alberto Pulvirenti (alberto.pulvirenti@ct.infn.it)
7 //
8
9 #include "AliLog.h"
10
11 #include "AliRsnCut.h"
12 #include "AliRsnVariableExpression.h"
13
14 ClassImp(AliRsnVariableExpression)
15
16 //______________________________________________________________________________
17 Bool_t AliRsnVariableExpression::Value(TObjArray& /*pgm*/)
18 {
19
20 //   Int_t indexx = fgCutSet->GetIndexByCutName ( fVname.Data() );
21   AliDebug(AliLog::kDebug,Form("Vname %s",fVname.Data()));
22 //   return fgCutSet->GetBoolValue ( indexx );
23
24   return fgCutSet->GetBoolValue(fVname.Atoi());
25 }
26