Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:20

0001 //-------------------------------------------------
0002 //
0003 //   Description: Parameters for Extrapolation
0004 //
0005 //
0006 //   $Date: 2007/02/27 11:44:00 $
0007 //   $Revision: 1.2 $
0008 //
0009 //   Author :
0010 //   N. Neumeister            CERN EP
0011 //
0012 //--------------------------------------------------
0013 #ifndef L1MUDT_EXT_PARAM_H
0014 #define L1MUDT_EXT_PARAM_H
0015 
0016 #include <iosfwd>
0017 
0018 //max. number of Extrapolations
0019 const int MAX_EXT = 12;
0020 
0021 // extrapolation types
0022 enum Extrapolation { EX12, EX13, EX14, EX21, EX23, EX24, EX34, EX15, EX16, EX25, EX26, EX56 };
0023 
0024 // overload output stream operator for Extrapolation
0025 std::ostream& operator<<(std::ostream& s, Extrapolation ext);
0026 
0027 #endif