]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/RESONANCES/AliRsnVariableExpression.cxx
- Removed small bug (otherwise chargeVector was not filled for normal data)
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnVariableExpression.cxx
CommitLineData
4fbb2459 1//
9477aa42 2// AliRsnVariableExpresion class
3// is used
4fbb2459 4// to help AliRsnExpresion class
5//
6// authors: Martin Vala (martin.vala@cern.ch)
7// Alberto Pulvirenti (alberto.pulvirenti@ct.infn.it)
8//
9
10#include "AliLog.h"
11
12#include "AliRsnCut.h"
13#include "AliRsnVariableExpression.h"
14
15ClassImp(AliRsnVariableExpression)
16
17//______________________________________________________________________________
18Bool_t AliRsnVariableExpression::Value(TObjArray& /*pgm*/)
19{
20
21// Int_t indexx = fgCutSet->GetIndexByCutName ( fVname.Data() );
2a1c7696 22 AliDebug(AliLog::kDebug, Form("Vname %s", fVname.Data()));
4fbb2459 23// return fgCutSet->GetBoolValue ( indexx );
24
2a1c7696 25 return fgCutSet->GetBoolValue(fVname.Atoi());
4fbb2459 26}
27