Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:49:55

0001 #include "DataFormats/GeometryCommonDetAlgo/interface/AlignmentPositionError.h"
0002 
0003 AlignmentPositionError::AlignmentPositionError(
0004     float xx, float yy, float zz, float phixphix, float phiyphiy, float phizphiz) {
0005   theGlobalError = GlobalErrorExtended(
0006       xx, 0., 0., 0., 0., 0., yy, 0., 0., 0., 0., zz, 0., 0., 0., phixphix, 0., 0., phiyphiy, 0., phizphiz);
0007 }
0008 
0009 AlignmentPositionError::AlignmentPositionError(const GlobalError& ge) {
0010   theGlobalError = GlobalErrorExtended(ge.cxx(),
0011                                        ge.cyx(),
0012                                        ge.czx(),
0013                                        0.,
0014                                        0.,
0015                                        0.,
0016                                        ge.cyy(),
0017                                        ge.czy(),
0018                                        0.,
0019                                        0.,
0020                                        0.,
0021                                        ge.czz(),
0022                                        0.,
0023                                        0.,
0024                                        0.,
0025                                        0.,
0026                                        0.,
0027                                        0.,
0028                                        0.,
0029                                        0.,
0030                                        0.);
0031 }