22 |
TRK = 1, ///< Code for Tracker |
TRK = 1, ///< Code for Tracker |
23 |
CALO = 2, ///< Code for Calorimeter level2 |
CALO = 2, ///< Code for Calorimeter level2 |
24 |
TOF = 4, ///< Code for ToF |
TOF = 4, ///< Code for ToF |
25 |
AC = 8, ///< Code for AntiCoincidence |
ANT = 8, ///< Code for AntiCoincidence |
26 |
TRIG = 16, ///< Code for Trigger |
TRG = 16, ///< Code for Trigger |
27 |
ORB = 32, ///< Code for Orbital Info |
ORB = 32, ///< Code for Orbital Info |
28 |
ALL = 63, ///< Sum of all the above codes |
DEFAULT = 63, ///< TRK, CALO, TOF, ANT, TRG, ORB |
29 |
CALO_L1 = 64 ///< Code for Calorimeter level1 |
ND = 64, ///< Code for Neutron Detector |
30 |
|
CALO_L1 = 128 |
31 |
|
///< Code for Calorimeter level1 |
32 |
|
}; |
33 |
|
|
34 |
|
/*! @enum TOFLAYERS Flags to identify layers. */ |
35 |
|
enum TOFLAYERS { |
36 |
|
S11 = 1, ///< S11. |
37 |
|
S12 = 2, ///< S12. |
38 |
|
S21 = 4, ///< S21. |
39 |
|
S22 = 8, ///< S22. |
40 |
|
S31 = 16, ///< S31. |
41 |
|
S32 = 32 |
42 |
|
///< S32. |
43 |
}; |
}; |
44 |
|
|
45 |
/*! @var TOFNPADLAYER |
/*! @var TOFNPADLAYER |
50 |
/*! @brief A simple matrix class. |
/*! @brief A simple matrix class. |
51 |
* |
* |
52 |
* This class defines a matrix built by STL vectors. It is basically a variable-dimension |
* This class defines a matrix built by STL vectors. It is basically a variable-dimension |
53 |
* vector of vectors; the dimension is defined at construction and cannot be changed in |
* vector of vectors. It is intended as a container and not for algebraic manipulations. |
54 |
* current implementation. It is intended as a container and not for algebraic manipulations. |
* The class provides a standard access operator [] and a resize method. |
|
* The class provides a standard access operator []. |
|
55 |
*/ |
*/ |
56 |
template<class T> |
template<class T> |
57 |
class SimpleMatrix { |
class SimpleMatrix { |
67 |
* @param nCols The number of columns |
* @param nCols The number of columns |
68 |
* @param elements The initialization value for the matrix elements. |
* @param elements The initialization value for the matrix elements. |
69 |
*/ |
*/ |
70 |
SimpleMatrix(unsigned int nRows, unsigned int nCols, T elements = T()) : |
SimpleMatrix(unsigned int nRows = 0, unsigned int nCols = 0, T elements = T()) : |
71 |
_matrix(nRows, std::vector<T>(nCols, elements)), _nRows(nRows), _nCols(nCols) { |
_matrix(nRows, std::vector<T>(nCols, elements)) { |
72 |
|
|
73 |
} |
} |
74 |
|
|
86 |
* @return The number of rows. |
* @return The number of rows. |
87 |
*/ |
*/ |
88 |
unsigned int GetNRows() { |
unsigned int GetNRows() { |
89 |
return _nRows; |
return _matrix.size(); |
90 |
} |
} |
91 |
|
|
92 |
/*! @brief Returns the number of columns. |
/*! @brief Returns the number of columns. |
94 |
* @return The number of columns. |
* @return The number of columns. |
95 |
*/ |
*/ |
96 |
unsigned int GetNCols() { |
unsigned int GetNCols() { |
97 |
return _nCols; |
return _matrix[0].size(); |
98 |
|
} |
99 |
|
|
100 |
|
/*! @brief Resizes the matrix. |
101 |
|
* |
102 |
|
* If new rows or columns are added, they are initialized to the default value; if T |
103 |
|
* is a class with no default constructor, a default value for T must be provided, which will |
104 |
|
* be replicated in every new matrix element. No modification |
105 |
|
* is done to existing elements (except for those that will be eventually removed). |
106 |
|
* |
107 |
|
* @param nRows The new number of rows. |
108 |
|
* @param nCols The new number of columns. |
109 |
|
* @param elements The initialization value for the new matrix elements. |
110 |
|
*/ |
111 |
|
void Resize(unsigned int nRows, unsigned int nCols, T elements = T()) { |
112 |
|
|
113 |
|
_matrix.resize(nRows, std::vector<T>(nCols, elements)); |
114 |
|
for (unsigned int i = 0; i < _matrix.size(); i++) |
115 |
|
_matrix[i].resize(nCols, elements); |
116 |
} |
} |
117 |
|
|
118 |
private: |
private: |
119 |
|
|
120 |
std::vector<std::vector<T> > _matrix; |
std::vector<std::vector<T> > _matrix; |
|
unsigned int _nRows, _nCols; |
|
121 |
}; |
}; |
122 |
|
|
123 |
#endif /* COMMONDEFS_H_ */ |
#endif /* COMMONDEFS_H_ */ |