Berkeley Nuclear Data Software
Public Member Functions | List of all members
CutManager Class Reference

#include <CutManager.h>

Public Member Functions

 CutManager ()
 
 CutManager (const CutManager &a_rhs)
 
CutManageroperator= (const CutManager &a_rhs)
 
void addOrModCut (std::string a_name, CutBase *a_cut)
 
std::vector< std::string > getCutNameList ()
 
bool passesCut (std::string a_name, double a_X, const std::vector< double > &a_Ys={}) const
 
virtual std::ostream & print (std::ostream &a_stream=std::cout) const
 
virtual std::ostream & genJSON (TCutG *a_cut, std::ostream &a_stream=std::cout) const
 
virtual void genTCutGs (double a_minX, double a_maxX)
 
virtual ~CutManager ()
 

Detailed Description

this class is intended to store and retrieve named cuts for an analysis routine the type of cuts is polymorphic based on inhering types defined in CutClasses.h with the interface to the cut defined in the ABC CutBase. !!!This class assumes ownership of the CutBase pointers!!!!

Constructor & Destructor Documentation

◆ CutManager() [1/2]

CutManager::CutManager ( )

default constructor puts the class into a working state with no cuts defined

◆ CutManager() [2/2]

CutManager::CutManager ( const CutManager a_rhs)

◆ ~CutManager()

CutManager::~CutManager ( )
virtual

Member Function Documentation

◆ addOrModCut()

void CutManager::addOrModCut ( std::string  a_name,
CutBase a_cut 
)

this function takes the name of a cut to be stored and a base class pointer used for access !!!This function takes ownership of the pointer handed to it!!!!

Here is the call graph for this function:
Here is the caller graph for this function:

◆ genJSON()

std::ostream & CutManager::genJSON ( TCutG *  a_cut,
std::ostream &  a_stream = std::cout 
) const
virtual

this function writes out a JSON representation of the TCutG handed to it to an ostream so that he TCutG can be stored with other cuts

◆ genTCutGs()

void CutManager::genTCutGs ( double  a_minX,
double  a_maxX 
)
virtual

this function loops of the currect cuts stored in the manager generating TCutG representations of them which are then accessible by name in either the root terminal or the TTree::Draw command this enforces the same range for all which might not be that useful

this function loops of the currect cuts stored in the manager generating TCutG representations of them which are then accessible by name in either the root terminal or the TTree::Draw command

◆ getCutNameList()

std::vector< std::string > CutManager::getCutNameList ( )

this function returns a list of the cut names currently stores in the cut manager

Here is the caller graph for this function:

◆ operator=()

CutManager & CutManager::operator= ( const CutManager a_rhs)

◆ passesCut()

bool CutManager::passesCut ( std::string  a_name,
double  a_X,
const std::vector< double > &  a_Ys = {} 
) const

this function applies a cut with a given name. If the name of the cut does not exist it will throw an error.

Here is the caller graph for this function:

◆ print()

std::ostream & CutManager::print ( std::ostream &  a_stream = std::cout) const
virtual
Here is the caller graph for this function:

The documentation for this class was generated from the following files: