CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions | Variables
impl Namespace Reference

Classes

struct  MakeArray
 
struct  MakeArray< T, N, 0 >
 

Functions

unsigned int findIndex (const reco::TrackBase::TrackAlgorithm algo, const unsigned int index)
 
template<typename T , size_t N>
std::array< T, NmakeArray ()
 
unsigned int priorityForAlgo (const reco::TrackBase::TrackAlgorithm algo)
 

Variables

reco::TrackBase::TrackAlgorithm algoPriorityOrder []
 

Detailed Description

The trackAlgoPriorityOrder maps an reco::TrackBase::TrackAlgorithm enumerator to its priority in track list merging. The mapping is needed because the order of the enumerators themselves does not, in general, convey useful information.

Function Documentation

unsigned int impl::findIndex ( const reco::TrackBase::TrackAlgorithm  algo,
const unsigned int  index 
)

Recursive implementation of searching the index of an algorithm in the algoPriorityOrder

Parameters
algoAlgorithm whose index is searched for
indexCurrent index
Returns
Index of the algorithm; if not found results compile error

Definition at line 83 of file trackAlgoPriorityOrder.h.

References algoPriorityOrder, and cmsHarvester::index.

Referenced by priorityForAlgo().

83  {
84  return index < sizeof(algoPriorityOrder)/sizeof(unsigned int) ?
86  throw "Index out of bounds, this means that some reco::TrackBase::TrackAlgorithm enumerator is missing from impl::algoPriorityOrder array.";
87  }
unsigned int findIndex(const reco::TrackBase::TrackAlgorithm algo, const unsigned int index)
reco::TrackBase::TrackAlgorithm algoPriorityOrder[]
template<typename T , size_t N>
std::array<T, N> impl::makeArray ( )

Create compile-time an std::array mapping reco::TrackBase::TrackAlgorithm enumerators to their order priorities as defined in impl::algoPriorityOrder array.

Template Parameters
Tvalue_type of the std::array
NSize of the std::array

Definition at line 150 of file trackAlgoPriorityOrder.h.

References impl::MakeArray< T, N, I >::value().

150  {
151  return MakeArray<T, N, N>::value();
152  }
unsigned int impl::priorityForAlgo ( const reco::TrackBase::TrackAlgorithm  algo)

Find the order priority for a track algorithm

Parameters
algoalgorithm whose index is searched for
Returns
Index of the algorithm in impl::algoPriorityOrder array; if not found results compile error
See Also
findIndex()

Definition at line 98 of file trackAlgoPriorityOrder.h.

References findIndex().

Referenced by impl::MakeArray< T, N, I >::value().

98  {
99  return findIndex(algo, 0);
100  }
unsigned int findIndex(const reco::TrackBase::TrackAlgorithm algo, const unsigned int index)

Variable Documentation

reco::TrackBase::TrackAlgorithm impl::algoPriorityOrder[]

This array defines the priority order in merging for the algorithms. The order is ascending, i.e. the first algorithm has the highest priority etc. The size of the array should be reco::TrackBase:algoSize (checked below with static_assert), and each reco::TrackBase::TrackAlgorithm enumerator should be in the array exactly once (checked below in findIndex() function).

Definition at line 24 of file trackAlgoPriorityOrder.h.

Referenced by findIndex().