1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//-------------------------------------------------
//
// Description: Parameters for Extrapolation
//
//
// $Date: 2007/02/27 11:44:00 $
// $Revision: 1.2 $
//
// Author :
// N. Neumeister CERN EP
//
//--------------------------------------------------
#ifndef L1MUDT_EXT_PARAM_H
#define L1MUDT_EXT_PARAM_H
#include <iosfwd>
//max. number of Extrapolations
const int MAX_EXT = 12;
// extrapolation types
enum Extrapolation { EX12, EX13, EX14, EX21, EX23, EX24, EX34, EX15, EX16, EX25, EX26, EX56 };
// overload output stream operator for Extrapolation
std::ostream& operator<<(std::ostream& s, Extrapolation ext);
#endif
|