LEGO A Modular Approach to Accelerator Alignment Data

  • Slides: 11
Download presentation
LEGO: A Modular Approach to Accelerator Alignment Data Analysis Catherine Le Cocq Stanford Linear

LEGO: A Modular Approach to Accelerator Alignment Data Analysis Catherine Le Cocq Stanford Linear Accelerator Center, Stanford University, Stanford, CA, USA

You wrote a bundle? n Maintainability – – n Portability – – n modular

You wrote a bundle? n Maintainability – – n Portability – – n modular approach input/output independent system independent scalability Expandability – – observation types resolution techniques Catherine Le Cocq IWAA 97

Description Catherine Le Cocq IWAA 97

Description Catherine Le Cocq IWAA 97

Input Stage: Data Format typedef struct { int typ; char nam[9]; int sel; double

Input Stage: Data Format typedef struct { int typ; char nam[9]; int sel; double x[8], sx[8]; int d[8]; int ilump; int iprimary; } edit_sta; typedef struct { int sel; char nam 1[9]; double h 1; char nam 2[9]; double h 2; double val, sval; int itime; } edit_mes; typedef struct { char nam[9]; int sel; double x[3], sx[3]; int d[3]; int ilump; int iprimary; } edit_tar; typedef struct { int typ; double r; double x. O[3]; double h. O; } model; Catherine Le Cocq IWAA 97

Competitive Analysis n Strengths – – – n data protection portability expandability blunder detection

Competitive Analysis n Strengths – – – n data protection portability expandability blunder detection unusual features Weaknesses – – memory size limited earth model Catherine Le Cocq IWAA 97

Real Life Examples Catherine Le Cocq IWAA 97

Real Life Examples Catherine Le Cocq IWAA 97

How long for 1 iteration? Catherine Le Cocq IWAA 97

How long for 1 iteration? Catherine Le Cocq IWAA 97

Future Directions n n Photogrammetry – thorough testing – integration with image acquisition New

Future Directions n n Photogrammetry – thorough testing – integration with image acquisition New types of observations – – n point transfer coordinates differences New integrations Catherine Le Cocq IWAA 97

Acknowledgments Cary Salsberg n Mike Gaydosh n Robert Ruland n and the whole gang.

Acknowledgments Cary Salsberg n Mike Gaydosh n Robert Ruland n and the whole gang. . . n FOR MORE INFO. . . lecocq@slac. stanford. edu Catherine Le Cocq IWAA 97

SIMS: Plan View Catherine Le Cocq IWAA 97

SIMS: Plan View Catherine Le Cocq IWAA 97

Lego Stage: Data Format typedef struct { char namept[9]; int typ; double xpt[3], x

Lego Stage: Data Format typedef struct { char namept[9]; int typ; double xpt[3], x 0[3], sxpt[3]; double h; int n 0[3]; double xex[5], e 0[5], sxex[5]; int n 1[5]; int defdatum[8]; int ntie; int ilump; double major[3], minor[3], phi[3]; } stru_pt; typedef struct { int typ; stru_pt *pt 1, *pt 2; double hpt 1, hpt 2; double val, sval; double res, sres; int itime; } measure; typedef struct { int indx, ntime, tref; int *n 1, *epoch; double *t 1, *t 2, *t 3; double *r 1, *r 2, *r 3; double *m, *sm; double *st 1, *st 2, *st 3; double *sr 1, *sr 2, *sr 3; } lump; Catherine Le Cocq IWAA 97