Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:13

0001 #ifndef _TRACKER_GLOBAL_ERROR_H_
0002 #define _TRACKER_GLOBAL_ERROR_H_
0003 
0004 #include "DataFormats/GeometryCommonDetAlgo/interface/GlobalErrorBase.h"
0005 #include "DataFormats/GeometryCommonDetAlgo/interface/GlobalErrorBaseExtended.h"
0006 #include "DataFormats/GeometryCommonDetAlgo/interface/ErrorMatrixTag.h"
0007 
0008 /**
0009    * typedef to a  GlobalErrorBase object defined as a 4*4 covariance matrix
0010    * acts like a 3*3 matrix to preserve backwards compatibility
0011    */
0012 
0013 typedef GlobalErrorBase<double, ErrorMatrixTag> GlobalError;
0014 typedef GlobalErrorBaseExtended<double, ErrorMatrixTag> GlobalErrorExtended;
0015 
0016 #endif