Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

LocalRhotoPiPiSelector Class Reference

#include <LocalRhotoPiPiSelector.h>

Inheritance diagram for LocalRhotoPiPiSelector:

DCSelectionFunction< CDDecay > DCSelectionFunction< CDDecay > unary_function unary_function unary_function unary_function List of all members.

Public Member Functions

 LocalRhotoPiPiSelector ()
 LocalRhotoPiPiSelector ()
bool operator() (CDDecay &iArg) const
bool operator() (CDDecay &aRho)
bool operator() (CDDecay &aRho)

Private Member Functions

 LocalRhotoPiPiSelector (const LocalRhotoPiPiSelector &)
 LocalRhotoPiPiSelector (const LocalRhotoPiPiSelector &)
const LocalRhotoPiPiSelectoroperator= (const LocalRhotoPiPiSelector &)
const LocalRhotoPiPiSelectoroperator= (const LocalRhotoPiPiSelector &)

Private Attributes

double m_maxMass
double m_minMass

Constructor & Destructor Documentation

LocalRhotoPiPiSelector::LocalRhotoPiPiSelector  ) 
 

00014 {
00015    IJobOptionsSvc* jobSvc;
00016    Gaudi::svcLocator()->service("JobOptionsSvc", jobSvc);
00017 
00018    PropertyMgr m_propMgr;
00019 
00020    //Declare the properties
00021    m_propMgr.declareProperty("minMass",               m_minMass = 0.5);
00022    m_propMgr.declareProperty("maxMass",               m_maxMass = 1.0);
00023    
00024    jobSvc->setMyProperties("LocalRhotoPiPiSelector", &m_propMgr);
00025 }

LocalRhotoPiPiSelector::LocalRhotoPiPiSelector const LocalRhotoPiPiSelector  )  [private]
 

LocalRhotoPiPiSelector::LocalRhotoPiPiSelector  ) 
 

LocalRhotoPiPiSelector::LocalRhotoPiPiSelector const LocalRhotoPiPiSelector  )  [private]
 


Member Function Documentation

bool DCSelectionFunction< CDDecay >::operator() CDDecay iArg  )  const [inline, inherited]
 

00078                                        {
00079          return const_cast<DCSelectionFunction<Arg> *>(this)->operator()(iArg);
00080       }

bool LocalRhotoPiPiSelector::operator() CDDecay aRho  )  [virtual]
 

Implements DCSelectionFunction< CDDecay >.

bool LocalRhotoPiPiSelector::operator() CDDecay aRho  )  [virtual]
 

Implements DCSelectionFunction< CDDecay >.

00027                                                       {
00028 
00029   double mass = aRho.mass();
00030   if( mass >= m_minMass && mass <= m_maxMass)
00031     return true;
00032   return false;
00033 }

const LocalRhotoPiPiSelector& LocalRhotoPiPiSelector::operator= const LocalRhotoPiPiSelector  )  [private]
 

const LocalRhotoPiPiSelector& LocalRhotoPiPiSelector::operator= const LocalRhotoPiPiSelector  )  [private]
 


Member Data Documentation

double LocalRhotoPiPiSelector::m_maxMass [private]
 

double LocalRhotoPiPiSelector::m_minMass [private]
 


The documentation for this class was generated from the following files:
Generated on Wed Feb 2 16:21:31 2011 for BOSS6.5.5 by  doxygen 1.3.9.1