CMS 3D CMS Logo

fixedArray.h
Go to the documentation of this file.
1 #ifndef FIXEDARRAY_H
2 #define FIXEDARRAY_H
3 
5 template <typename T, unsigned int S>
6 class fixedArray {
7 public:
8  fixedArray() {}
9 
10  operator T*() { return content; }
11  operator const T*() const { return content; }
12  T& operator[](const unsigned int i) { return content[i]; }
13  const T& operator[](const unsigned int i) const { return content[i]; }
14 
15 private:
17 
19 };
20 #endif
fixedArray::operator[]
const T & operator[](const unsigned int i) const
Definition: fixedArray.h:13
mps_fire.i
i
Definition: mps_fire.py:428
fixedArray::operator[]
T & operator[](const unsigned int i)
Definition: fixedArray.h:12
COND_SERIALIZABLE
#define COND_SERIALIZABLE
Definition: Serializable.h:39
fixedArray::fixedArray
fixedArray()
Definition: fixedArray.h:8
S
double S(const TLorentzVector &, const TLorentzVector &)
Definition: Particle.cc:97
Serializable.h
fixedArray
Definition: fixedArray.h:6
T
long double T
Definition: Basic3DVectorLD.h:48
fixedArray::content
T content[S]
Definition: fixedArray.h:16