#include <AnalysisSelection.h>
|
template<class COLL > |
void | getObjects (const COLL *coll, std::vector< typename COLL::value_type > &out) |
| get objects which pass the selection criteria More...
|
|
template<class COLL > |
void | getIndices (const COLL *coll, std::vector< int > &out) |
| get indices of the objects which pass the selection criteria More...
|
|
template<class CRITERIA>
struct AnalysisUtils::Selection< CRITERIA >
Definition at line 20 of file AnalysisSelection.h.
◆ getIndices()
template<class CRITERIA >
template<class COLL >
get indices of the objects which pass the selection criteria
- Parameters
-
COLL | [in] type of collection |
coll | [in] pointer to collection |
out | [out] indices of selected objects |
Definition at line 46 of file AnalysisSelection.h.
52 typename COLL::const_iterator
it = coll->begin();
53 typename COLL::const_iterator
itE = coll->end();
◆ getObjects()
template<class CRITERIA >
template<class COLL >
get objects which pass the selection criteria
- Parameters
-
COLL | [in] type of collection |
coll | [in] pointer to collection |
out | [out] selected objects |
Definition at line 28 of file AnalysisSelection.h.
33 typename COLL::const_iterator
it = coll->begin();
34 typename COLL::const_iterator
itE = coll->end();
The documentation for this struct was generated from the following file: