150 lines
4.6 KiB
C++
150 lines
4.6 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4BSplineSurfaceCreator.cc,v 1.6 2002/11/21 16:49:47 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-05-00 $
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
// Class G4BSplineSurfaceCreator
|
|
//
|
|
// Authors: J.Sulkimo, P.Urban.
|
|
// Revisions by: L.Broglia, G.Cosmo.
|
|
//
|
|
// History:
|
|
// 18-Nov-1999: First step of re-engineering - G.Cosmo
|
|
// ----------------------------------------------------------------------
|
|
|
|
#include <instmgr.h>
|
|
#include "G4BSplineSurfaceCreator.hh"
|
|
#include "G4GeometryTable.hh"
|
|
#include "G4ControlPoints.hh"
|
|
|
|
G4BSplineSurfaceCreator G4BSplineSurfaceCreator::csc;
|
|
|
|
G4BSplineSurfaceCreator::G4BSplineSurfaceCreator(){G4GeometryTable::RegisterObject(this);}
|
|
|
|
G4BSplineSurfaceCreator::~G4BSplineSurfaceCreator(){}
|
|
|
|
G4BSplineSurfaceCreator G4BSplineSurfaceCreator::GetInstance()
|
|
{
|
|
return csc;
|
|
}
|
|
|
|
void G4BSplineSurfaceCreator::CreateG4Geometry(STEPentity& Ent)
|
|
{
|
|
SdaiB_spline_surface* bSpline = new SdaiB_spline_surface(&Ent);
|
|
G4int u,v;
|
|
G4String attrName("u_degree");
|
|
STEPattribute *Attr = GetNamedAttribute(attrName, Ent);
|
|
u = *Attr->ptr.i;
|
|
bSpline->u_degree_(*Attr->ptr.i);
|
|
attrName = "v_degree";
|
|
Attr = GetNamedAttribute(attrName, Ent);
|
|
v=*Attr->ptr.i;
|
|
bSpline->v_degree_(*Attr->ptr.i);
|
|
|
|
attrName = "control_points_list";
|
|
Attr = GetNamedAttribute(attrName, Ent);
|
|
STEPaggregate *Aggr = Attr->ptr.a;
|
|
GenericAggregate* gAggr = (GenericAggregate*)Attr->ptr.a;
|
|
bSpline->control_points_list_(gAggr);
|
|
|
|
// Get control points
|
|
|
|
G4int cols,rows;
|
|
cols = v+1;
|
|
rows = u+1;
|
|
|
|
STEPentity *Entity;
|
|
char tmp[16];
|
|
SCLstring s;
|
|
const char *Str = Aggr->asStr(s);
|
|
|
|
G4int stringlength = strlen(Str);
|
|
G4ControlPoints controlPoints(4,rows, cols);
|
|
RealAggregate rationalAggr;
|
|
for(G4int a=0;a<rows;a++)
|
|
for(G4int b=0;b<cols;b++)
|
|
{
|
|
// get points
|
|
|
|
// temp version until the NIST toolkit can handle two dimensional aggregates
|
|
// The string Str contains the STEP file id:s of the underlying point
|
|
// entities so well have to parse the string to get them out...arghhh!
|
|
char c = ' ';
|
|
int Count=0;
|
|
// Loop to find the entities
|
|
|
|
|
|
// Fill points
|
|
//Temporary solution until the STEP toolkit has been updated:
|
|
|
|
while(c != '#')
|
|
{
|
|
c = Str[Count];
|
|
Count++;
|
|
if(Count>stringlength)
|
|
{
|
|
G4cout << "\nString index overflow in G4ControlPoints:116";
|
|
exit(0);
|
|
}
|
|
}
|
|
|
|
c = Str[Count];
|
|
G4int Index=0;
|
|
|
|
while(c != ',' && c != ')')
|
|
{
|
|
tmp[Index]=c;
|
|
Index++;
|
|
Count++;
|
|
c = Str[Count];
|
|
}
|
|
tmp[Index]='\0';
|
|
Index = atoi(tmp);
|
|
//delete [] tmp;
|
|
//Entity = InstanceList.GetSTEPentity(Index);
|
|
MgrNode* MgrTmp = instanceManager.FindFileId(Index);
|
|
Index = instanceManager.GetIndex(MgrTmp);
|
|
// Entity = instanceManager.GetSTEPentity(Index);
|
|
Entity = instanceManager.GetApplication_instance(Index);
|
|
void *tmp =G4GeometryTable::CreateObject(*Entity);
|
|
if (tmp)
|
|
controlPoints.put(a,b,*(G4PointRat*)tmp);
|
|
else
|
|
G4cerr << "WARNING - G4BSplineSurfaceCreator::CreateG4Geometry" << G4endl
|
|
<< "\tNULL control point (G4PointRat) detected." << G4endl;
|
|
}
|
|
|
|
createdObject = bSpline;
|
|
}
|
|
|
|
|
|
|
|
|
|
void G4BSplineSurfaceCreator::CreateSTEPGeometry(void* G4obj)
|
|
{
|
|
|
|
}
|
|
|