2 #ifndef __OBJEXPORTER_H__
3 #define __OBJEXPORTER_H__
4 #include "GenFit/FitStatus.h"
5 #include "GenFit/GFRaveVertexFactory.h"
8 #include "StEvent/StEvent.h"
9 #include "StEvent/StFttCollection.h"
10 #include "StEvent/StFttCluster.h"
19 const static bool verbose =
true;
22 void vert( ofstream &of,
float x,
float y,
float z ){
23 of <<
"v " << x <<
" " << y <<
" " << z << endl;
26 void vert( ofstream &of, TVector3 v ){
27 of <<
"v " << v.X() <<
" " << v.Y() <<
" " << v.Z() << endl;
32 void sphere(TVector3 pt,
float radius,
int nLatitude,
int nLongitude, ofstream &fout){
35 int nPitch = nLongitude + 1;
36 const float DEGS_TO_RAD = 3.14159f/180.0f;
38 float pitchInc = (180. / (float)nPitch) * DEGS_TO_RAD;
39 float rotInc = (360. / (float)nLatitude) * DEGS_TO_RAD;
42 vert(fout, pt.X(), pt.Y()+radius, pt.Z());
43 vert(fout, pt.X(), pt.Y()-radius, pt.Z());
45 int fVert = numVertices;
46 for(p=1; p<nPitch; p++) {
47 out = fabs(radius * sin((
float)p * pitchInc));
48 y = radius * cos(p * pitchInc);
49 for(s=0; s<nLatitude; s++) {
50 x = out * cos(s * rotInc);
51 z = out * sin(s * rotInc);
52 fout << TString::Format(
"v %g %g %g\n", x+pt.X(), y+pt.Y(), z+pt.Z()).Data();
59 for(p=1; p<nPitch-1; p++) {
60 for(s=0; s<nLatitude; s++) {
62 j = (s==nLatitude-1) ? i-nLatitude : i;
63 fout << TString::Format(
"f %d %d %d %d\n",
64 (i+1-nLatitude)+fVert, (j+2-nLatitude)+fVert, (j+2)+fVert, (i+1)+fVert);
70 int offLastVerts = fVert + (nLatitude * (nLongitude-1));
71 for(s=0; s<nLatitude; s++)
73 j = (s==nLatitude-1) ? -1 : s;
74 fout << TString::Format(
"f %d %d %d\n", fVert-1, (j+2)+fVert, (s+1)+fVert ).Data();
75 fout << TString::Format(
"f %d %d %d\n", fVert, (s+1)+offLastVerts, (j+2)+offLastVerts).Data();
80 void face( ofstream &fout,
int anchor,
int v0,
int v1,
int v2 ){
81 fout << TString::Format(
"f %d %d %d\n", anchor+v0, anchor+v1, anchor+v2).Data();
83 void face( ofstream &fout,
int anchor,
int v0,
int v1,
int v2,
int v3 ){
84 fout << TString::Format(
"f %d %d %d %d\n", anchor+v0, anchor+v1, anchor+v2, anchor+v3).Data();
87 void prism( ofstream &fout, TVector3 po, TVector3 ds ){
88 int fVert = numVertices;
90 vert( fout, po.X(), po.Y(), po.Z() );
91 vert( fout, po.X() + ds.X(), po.Y(), po.Z() );
92 vert( fout, po.X() + ds.X(), po.Y() + ds.Y(), po.Z() );
93 vert( fout, po.X(), po.Y() + ds.Y(), po.Z() );
96 vert( fout, po.X(), po.Y(), po.Z() + ds.Z() );
97 vert( fout, po.X() + ds.X(), po.Y(), po.Z() + ds.Z() );
98 vert( fout, po.X() + ds.X(), po.Y() + ds.Y(), po.Z() + ds.Z() );
99 vert( fout, po.X(), po.Y() + ds.Y(), po.Z() + ds.Z() );
101 face( fout, fVert, 1, 2, 3, 4 );
102 face( fout, fVert, 5, 6, 7, 8 );
103 face( fout, fVert, 1, 2, 6, 5 );
104 face( fout, fVert, 2, 3, 7, 6 );
105 face( fout, fVert, 3, 4, 8, 7 );
106 face( fout, fVert, 1, 4, 8, 5 );
110 void tri( ofstream &fout, TVector3 v0,
float dz,
float w,
float h,
float phi ) {
112 int fVert = numVertices;
114 float yp = v0.Y() + (sin( phi + dphi ) + cos( phi + dphi ) ) * h;
115 float yn = v0.Y() + (sin( phi - dphi ) + cos( phi - dphi ) ) * h;
116 float xp = v0.X() + (cos( phi + dphi ) - sin( phi + dphi)) * h;
117 float xn = v0.X() + (cos( phi - dphi ) - sin( phi - dphi)) * h;
119 vert( fout, v0.X(), v0.Y(), v0.Z() );
120 vert( fout, xp, yp, v0.Z() );
121 vert( fout, xn, yn, v0.Z() );
124 vert( fout, v0.X(), v0.Y(), v0.Z() - dz );
125 vert( fout, xp, yp, v0.Z() - dz );
126 vert( fout, xn, yn, v0.Z() - dz );
128 face( fout, fVert, 1, 2, 3 );
129 face( fout, fVert, 4, 5, 6 );
130 face( fout, fVert, 1, 2, 5, 4 );
131 face( fout, fVert, 2, 3, 6, 5 );
132 face( fout, fVert, 3, 1, 4, 6 );
136 static TVector3 projectAsStraightLine( genfit::Track * t,
float* xyz0,
float* xyz1,
float* xyzf,
float* planenorm_xyz,
float * cov, TVector3 &mom ) {
137 TVector3 tv3A = trackPosition( t, xyz0, planenorm_xyz, cov, mom );
138 TVector3 tv3B = trackPosition( t, xyz1, planenorm_xyz, cov, mom );
141 LOG_INFO <<
"Straight Line Projection using" << endm;
142 LOG_INFO <<
"A.x = " << tv3A.X() << endm;
143 LOG_INFO <<
"B.x = " << tv3B.X() << endm;
146 TVector3 projlinedir = tv3B-tv3A;
148 double tintersection =
149 (planenorm_xyz[0]*(xyzf[0]-tv3A[0])+planenorm_xyz[1]*(xyzf[1]-tv3A[1])+planenorm_xyz[2]*(xyzf[2]-tv3A[2])) /
150 (planenorm_xyz[0]*projlinedir[0]+planenorm_xyz[1]*projlinedir[1]+planenorm_xyz[2]*projlinedir[2]);
152 return TVector3( projlinedir[0]*tintersection+tv3A[0], projlinedir[1]*tintersection+tv3A[1], projlinedir[2]*tintersection+tv3A[2] );
165 static TVector3 trackPosition( genfit::Track * t,
float* xyz,
float* norm,
float * cov, TVector3 &mom ){
167 LOG_INFO <<
"trackPosition(" << t <<
", " << xyz <<
", " << norm <<
", " << cov <<
" )" << endm;
168 LOG_INFO <<
"Projecting to: " << xyz[0] <<
" " << xyz[1] <<
" " << xyz[2] << endm;
169 LOG_INFO <<
"Normal: " << norm[0] <<
" " << norm[1] <<
" " << norm[2] << endm;
170 LOG_INFO <<
"track has n points: " << t->getNumPointsWithMeasurement() << endm;
172 const int iPoint = 0;
175 if ( t->getNumPointsWithMeasurement() == 0 ){
176 LOG_WARN <<
"Track has no points with measurement, cannot project" << endm;
177 return TVector3( -990, -990, -990 );
180 auto plane = genfit::SharedPlanePtr(
181 new genfit::DetPlane(TVector3(xyz), TVector3(norm) )
184 genfit::MeasuredStateOnPlane tst = t->getFittedState(iPoint);
185 auto TCM = t->getCardinalRep()->get6DCov(tst);
187 t->getCardinalRep()->extrapolateToPlane(tst, plane,
false,
true);
189 TCM = t->getCardinalRep()->get6DCov(tst);
192 float x = tst.getPos().X();
193 float y = tst.getPos().Y();
194 float _z = tst.getPos().Z();
196 mom.SetXYZ( tst.getMom().X(), tst.getMom().Y(), tst.getMom().Z() );
198 LOG_INFO <<
"Projected to: " << x <<
" " << y <<
" " << _z << endm;
201 cov[0] = TCM(0,0); cov[1] = TCM(1,0); cov[2] = TCM(2,0);
202 cov[3] = TCM(0,1); cov[4] = TCM(1,1); cov[5] = TCM(2,1);
203 cov[6] = TCM(0,2); cov[7] = TCM(1,2); cov[8] = TCM(2,2);
207 return TVector3( x, y, _z );
208 }
catch ( genfit::Exception &e ){
209 LOG_INFO <<
"Track projection Failed from trackPoint " << iPoint <<
" E: " << e.what() << endm;
210 return TVector3( -990, -990, -990 );
214 return TVector3( -990, -990, -990 );
218 static TVector3 trackPosition( genfit::Track * t,
float z ){
221 float detpos[3] = {0,0,z};
222 float detnorm[3] = {0,0,1};
223 return trackPosition( t, detpos, detnorm, cov, mom);
227 void output_ftt_strips(
230 fout <<
"\n" << endl;
231 fout <<
"o fttStrips" << endl;
232 fout <<
"usemtl stgc_hits\n" << endl;
233 float pz[] = {280.90499, 303.70498, 326.60501, 349.40499};
235 const float SCALE = 0.1;
238 for (
size_t i = 0; i <
event->fttCollection()->numberOfClusters(); i++ ){
239 StFttCluster* c =
event->fttCollection()->clusters()[i];
240 if ( c->nStrips() < 2 )
continue;
241 float dw = 0.05, dlh = 60.0, dlv = 60.0;
242 float mx = 0.0, my = 0.0;
243 float sx = 1.0, sy = 1.0;
246 if ( c->quadrant() == kFttQuadrantA ){
249 }
else if ( c->quadrant() == kFttQuadrantB ){
250 mx = 10.16*SCALE; my = 0.0*SCALE;
254 }
else if ( c->quadrant() == kFttQuadrantC ){
255 mx = -10.16*SCALE ; my = -00.0*SCALE;
256 sx = -1.0; sy = -1.0;
257 dlh = -dlh; dlv = -dlv;
259 }
else if ( c->quadrant() == kFttQuadrantD ){
264 cp.SetZ( -pz[ c->plane() ] * SCALE );
265 if ( c->orientation() == kFttHorizontal ){
266 cp.SetY( my + sy * c->x()/10.0 * SCALE );
268 prism( fout, cp, TVector3( dlh * SCALE, dw, dw ) );
269 }
else if ( c->orientation() == kFttVertical ){
270 cp.SetX( mx + sx * c->x()/10.0 * SCALE );
272 prism( fout, cp, TVector3( dw, dlv * SCALE, dw ) );
278 void output( std::string filename,
280 std::vector< Seed_t> seeds,
281 std::vector< genfit::Track *> tracks,
282 const std::vector< genfit::GFRaveVertex *> &vertices,
283 std::vector<TVector3> &fttHits,
284 std::vector<TVector3> &fstHits,
285 std::vector<TVector3> &fcsPreHits,
286 std::vector<TVector3> &fcsClusters,
287 std::vector<float> &fcsClusterEnergy
290 const float SCALE = 0.1;
291 LOG_INFO <<
"Writing: " << filename << endm;
294 ofstream ofile( (filename +
".obj" ).c_str() );
296 ofile <<
"\nmtllib materials.mtl\n\n" << endl;
299 output_ftt_strips( ofile, event );
303 if ( vertices.size() > 0 ){
304 ofile <<
"o FwdVertices" << endl;
305 for (
auto v : vertices ) {
306 startPos.SetXYZ( v->getPos().X(), v->getPos().Y(), v->getPos().Z() );
307 sphere( TVector3( v->getPos().X() * SCALE, v->getPos().Y() * SCALE, -v->getPos().Z() * SCALE ), 0.5, 10, 10, ofile );
313 LOG_INFO <<
"Viz has " << fttHits.size() <<
" FTT Hits" << endm;
315 if ( fttHits.size() > 0 ){
316 ofile <<
"\n" << endl;
317 ofile <<
"o fttHits" << endl;
318 ofile <<
"usemtl stgc_hits\n" << endl;
319 for (
auto p : fttHits ){
320 sphere( TVector3( p.X() * SCALE, p.Y() * SCALE, -p.Z() * SCALE ), 0.15, 12, 12, ofile );
326 LOG_INFO <<
"Viz has " << fstHits.size() <<
" FST Hits" << endm;
328 if ( fstHits.size() > 0 ) {
329 ofile <<
"\n" << endl;
330 ofile <<
"o fstHits" << endl;
331 ofile <<
"usemtl fst_hits\n" << endl;
332 for (
auto p : fstHits ){
337 sphere( TVector3( p.X() * SCALE, p.Y() * SCALE, -p.Z() * SCALE ), 0.3, 10, 10, ofile );
343 LOG_INFO <<
"Viz has " << fcsPreHits.size() <<
" EPD Hits" << endm;
345 if ( fcsPreHits.size() > 0 ){
346 ofile <<
"\n" << endl;
347 ofile <<
"o epd" << endl;
348 ofile <<
"usemtl fcs_hits\n" << endl;
349 for (
auto p : fcsPreHits ){
351 sphere( TVector3( p.X() * SCALE, p.Y() * SCALE, -p.Z() * SCALE ), 0.25, 10, 10, ofile );
356 LOG_INFO <<
"Viz has " << fcsClusters.size() <<
" FCS Hits" << endm;
358 if ( fcsClusters.size() > 0 ){
359 ofile <<
"\n" << endl;
360 ofile <<
"o fcs" << endl;
361 ofile <<
"usemtl fcs_hits\n" << endl;
363 for (
auto p : fcsClusters ){
365 TVector3 ds = TVector3( 1, 1, fcsClusterEnergy[i] );
366 prism( ofile, TVector3( p.X() * SCALE, p.Y() * SCALE, -p.Z() * SCALE ), ds );
373 LOG_INFO <<
"Viz has " << seeds.size() <<
" seeds" << endm;
375 if ( seeds.size() > 0 ){
376 ofile <<
"\n\no FwdSeeds\n" << endl;
377 ofile <<
"usemtl seeds\n" << endl;
379 for (
auto s : seeds ) {
380 size_t vStart = numVertices;
383 vert( ofile, h->getX() * SCALE, h->getY() * SCALE, -h->getZ() * SCALE );
388 for (
size_t i = vStart; i < numVertices; i++){
401 LOG_INFO <<
"Viz has " << tracks.size() <<
" tracks Hits" << endm;
403 if ( tracks.size() > 0 ){
404 ofile <<
"\n\no FwdTracks\n" << endl;
405 ofile <<
"usemtl tracks\n" << endl;
407 for (
auto t : tracks ) {
408 size_t vStart = numVertices;
412 for (
float z = startPos.Z(); z < 875; z += zStep ){
413 TVector3 point = trackPosition( t, z );
414 if ( point.X() < -900 && point.Y() < -900 )
break;
415 if ( point.X() < -90 && point.Y() < -90 ) { z+= 50;
continue;}
417 vert( ofile, point.X() * SCALE, point.Y() * SCALE, -point.Z() * SCALE );
422 for (
size_t i = vStart; i < numVertices; i++){