00001 //------------------------------------------------- 00002 // 00003 // Description: Parameters for Extrapolation 00004 // 00005 // 00006 // $Date: 2007/03/30 07:48:02 $ 00007 // $Revision: 1.1 $ 00008 // 00009 // Author : 00010 // N. Neumeister CERN EP 00011 // 00012 //-------------------------------------------------- 00013 #ifndef L1MUDT_EXT_PARAM_H 00014 #define L1MUDT_EXT_PARAM_H 00015 00016 #include <iosfwd> 00017 00018 //max. number of Extrapolations 00019 const int MAX_EXT = 12; 00020 00021 // extrapolation types 00022 enum Extrapolation { EX12, EX13, EX14, EX21, EX23, EX24, EX34, 00023 EX15, EX16, EX25, EX26, EX56 }; 00024 00025 00026 // overload output stream operator for Extrapolation 00027 std::ostream& operator<<( std::ostream& s, Extrapolation ext); 00028 00029 #endif