#include "THaCut.h"
#include "THaPrintOption.h"
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <cstring>
using namespace std;
THaCut::THaCut( const char* name, const char* expression, const char* block,
const THaVarList* vlst, const THaCutList* clst ) :
THaFormula(), fLastResult(kFALSE), fBlockname(block), fNCalled(0), fNPassed(0)
{
SetName(name);
SetList(vlst);
SetCutList(clst);
fRegister = kFALSE;
Int_t nch = strlen(expression);
char *expr = new char[nch+1];
Int_t j = 0;
for (Int_t i=0;i<nch;i++) {
if (expression[i] == ' ') continue;
if (i > 0 && (expression[i] == '*') && (expression[i-1] == '*')) {
expr[j-1] = '^';
continue;
}
expr[j] = expression[i]; j++;
}
expr[j] = 0;
if (j) SetTitle(expr);
delete [] expr;
Compile();
}
THaCut::THaCut( const THaCut& rhs ) :
THaFormula(rhs), fLastResult(rhs.fLastResult), fBlockname(rhs.fBlockname),
fNCalled(rhs.fNCalled), fNPassed(rhs.fNPassed)
{
}
THaCut& THaCut::operator=( const THaCut& rhs )
{
if( this != &rhs ) {
THaFormula::operator=(rhs);
fLastResult = rhs.fLastResult;
fBlockname = rhs.fBlockname;
fNCalled = rhs.fNCalled;
fNPassed = rhs.fNPassed;
}
return *this;
}
#if ROOT_VERSION_CODE >= ROOT_VERSION(4,0,0)
Int_t THaCut::DefinedVariable(TString& name, Int_t& action)
#else
Int_t THaCut::DefinedVariable(TString& name)
#endif
{
#if ROOT_VERSION_CODE >= ROOT_VERSION(4,0,0)
action = kDefinedVariable;
#endif
Int_t k = DefinedCut( name );
if( k>=0 ) return k;
#if ROOT_VERSION_CODE >= ROOT_VERSION(4,0,0)
return THaFormula::DefinedVariable( name, action );
#else
return THaFormula::DefinedVariable( name );
#endif
}
void THaCut::Print( Option_t* option ) const
{
THaPrintOption s(option);
Int_t nn = max( s.GetValue(1), (Int_t)strlen(GetName()) );
Int_t nt = max( s.GetValue(2), (Int_t)strlen(GetTitle()) );
Int_t nb = max( s.GetValue(3), fBlockname.Length() );
Int_t np = max( s.GetValue(4), (Int_t)strlen(s.GetOption(4)) );
if ( s.IsLine() ) {
cout.flags( ios::left );
cout << setw(nn) << GetName() << " "
<< setw(nt) << GetTitle() << " ";
if( !strcmp( s.GetOption(), kPRINTLINE )) {
cout << setw(1) << (bool)fLastResult << " "
<< setw(nb) << fBlockname << " ";
}
cout << setw(9) << fNCalled << " "
<< setw(np) << fNPassed << " ";
cout << setprecision(3);
if( fNCalled > 0 )
cout << "(" << 100.0*((float)fNPassed)/((float)fNCalled) << "%)";
else
cout << "(0.0%)";
cout << endl;
} else {
cout.flags( ios::right );
THaFormula::Print( s.GetOption() );
cout << "Curval: " << setw(9) << (bool)fLastResult << " "
<< "Block: " << fBlockname << endl;
cout << "Called: " << setw(9) << fNCalled << " "
<< "Passed: " << setw(9) << fNPassed;
if( fNCalled > 0 )
cout << setprecision(3)
<<" (" << 100.0*((float)fNPassed)/((float)fNCalled) << "%)\n";
else
cout << " (0.00%)\n";
}
}
void THaCut::SetBlockname( const Text_t* name )
{
fBlockname = name;
}
void THaCut::SetName( const Text_t* name )
{
if( fName.Length() == 0 )
TNamed::SetName( name );
}
void THaCut::SetNameTitle( const Text_t* name, const Text_t* formula )
{
if( fName.Length() == 0 )
TNamed::SetNameTitle( name, formula );
}
ClassImp(THaCut)
Last change: Sat Nov 7 21:26:44 2009
Last generated: 2009-11-07 21:26
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.