Newer
Older
//==========================================================================
// AIDA Detector description implementation
//--------------------------------------------------------------------------
// Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
// All rights reserved.
//
// For the licensing terms see $DD4hepINSTALL/LICENSE.
// For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
//
// Author : M.Frank
//
//==========================================================================
/// Framework include files
#include <DD4hep/DetFactoryHelper.h>
Markus FRANK
committed
#include <DD4hep/DetectorTools.h>
#include <DD4hep/Printout.h>
#include <XML/Utilities.h>
#include <DDCAD/ASSIMPReader.h>
Markus FRANK
committed
#include <DDCAD/ASSIMPWriter.h>
// C/C++ include files
using namespace std;
using namespace dd4hep;
using namespace dd4hep::detail;
Markus FRANK
committed
static void* read_CAD_Volume(Detector& dsc, int argc, char** argv) {
string fname;
double scale = 1.0;
bool help = false;
for(int i = 0; i < argc && argv[i]; ++i) {
if ( 0 == ::strncmp( "-input",argv[i],4) ) fname = argv[++i];
else if ( 0 == ::strncmp("--input",argv[i],5) ) fname = argv[++i];
else if ( 0 == ::strncmp( "-scale",argv[i],4) ) scale = ::atof(argv[++i]);
else if ( 0 == ::strncmp("--scale",argv[i],5) ) scale = ::atof(argv[++i]);
else if ( 0 == ::strncmp( "-help",argv[i],2) ) help = true;
else if ( 0 == ::strncmp("--help",argv[i],3) ) help = true;
}
if ( fname.empty() || help ) {
cout <<
"Usage: -plugin DD4hep_CAD_export -arg [-arg] \n\n"
Markus FRANK
committed
" -input <string> Input file name. \n"
" -scale <float> Scale factor when importing shapes. \n"
Markus FRANK
committed
" -help Print this help output. \n"
" Arguments given: " << arguments(argc,argv) << endl << flush;
::exit(EINVAL);
}
auto volumes = cad::ASSIMPReader(dsc).readVolumes(fname, scale);
if ( volumes.empty() ) {
except("CAD_Volume","+++ CAD file: %s does not contain any "
"understandable tessellated volumes.", fname.c_str());
}
auto* result = new std::vector<std::unique_ptr<TGeoVolume> >(move(volumes));
return result;
}
DECLARE_DD4HEP_CONSTRUCTOR(DD4hep_read_CAD_volumes,read_CAD_Volume)
static Handle<TObject> create_CAD_Shape(Detector& dsc, xml_h e) {
xml_elt_t elt(e);
string fname = elt.attr<string>(_U(ref));
double unit = elt.hasAttr(_U(unit)) ? elt.attr<double>(_U(unit)) : dd4hep::cm;
Markus FRANK
committed
auto shapes = cad::ASSIMPReader(dsc).readShapes(fname, unit);
if ( shapes.empty() ) {
except("CAD_Shape","+++ CAD file: %s does not contain any "
"understandable tessellated shapes.", fname.c_str());
}
Solid solid;
size_t count = shapes.size();
if ( count == 1 ) {
solid = shapes[0].release();
}
else {
if ( elt.hasAttr(_U(item)) ) {
solid = shapes[which].release();
}
else if ( elt.hasAttr(_U(mesh)) ) {
solid = shapes[which].release();
}
else {
except("CAD_Shape","+++ CAD file: %s does contains %ld tessellated shapes. "
"You need to add a selector.", fname.c_str(), shapes.size());
}
}
if ( elt.hasAttr(_U(name)) ) solid->SetName(elt.attr<string>(_U(name)).c_str());
return solid;
}
DECLARE_XML_SHAPE(CAD_Shape__shape_constructor,create_CAD_Shape)
Markus FRANK
committed
static Handle<TObject> create_CAD_Assembly(Detector& dsc, xml_h e) {
xml_elt_t elt(e);
string fname = elt.attr<string>(_U(ref));
double unit = elt.hasAttr(_U(unit)) ? elt.attr<double>(_U(unit)) : dd4hep::cm;
Markus FRANK
committed
auto volumes = cad::ASSIMPReader(dsc).readVolumes(fname, unit);
if ( volumes.empty() ) {
except("CAD_Shape","+++ CAD file: %s does not contain any "
Markus FRANK
committed
"understandable tessellated volumes.", fname.c_str());
}
Assembly assembly("assembly");
Markus FRANK
committed
for(size_t i=0; i < volumes.size(); ++i)
assembly.placeVolume(volumes[i].release());
if ( elt.hasAttr(_U(name)) ) assembly->SetName(elt.attr<string>(_U(name)).c_str());
return assembly;
}
Markus FRANK
committed
DECLARE_XML_VOLUME(CAD_Assembly__volume_constructor,create_CAD_Assembly)
*
* The CAD volume plugin allows to embed valumes and shapes originating from
* Computer Aided Design drawings using multiple formats as they are supported
* by the open asset importer library (http://assimp.org ).
* The plugin can be used whenever the xmnl fragment matches the following pattern:
*
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
* <XXX ref="file-name" material="material-name">
* <material name="material-name"/> <!-- alternative: child or attr -->
*
* Envelope: Use special envelop shape (default: assembly)
* The envelope tag must match the expected pattern of the utility
* dd4hep::xml::createStdVolume(Detector& desc, xml::Element e)
* <envelope name="volume-name" material="material-name">
* <shape name="shape-name" type="shape-type" args....>
* </shape>
* </envelope>
*
* Option 1: No additional children. use default material
* and place all children in the origin of the envelope
*
* Option 2: Volume with default material
* <volume name="vol-name"/>
*
* Option 3: Volume with non-default material
* <volume name="vol-name" material="material-name"/>
*
* Option 4: Volume with optional placement. No position = (0,0,0), No rotation = (0,0,0)
* <volume name="vol-name" material="material-name"/>
* <position x="0" y="0" z="5*cm"/>
* <rotation x="0" y="0" z="0.5*pi*rad"/>
* </volume>
*
* For sensitive volumes: add physical volume IDs:
* <volume name="vol-name" material="material-name"/>
* <physvolid name="layer" value="1"/>
* <physvolid name="slice" value="10"/>
* </volume>
*
* </XXX>
*/
static Handle<TObject> create_CAD_Volume(Detector& dsc, xml_h e) {
xml_elt_t elt(e);
string fname = elt.attr<string>(_U(ref));
double unit = elt.attr<double>(_U(unit));
Markus FRANK
committed
auto volumes = cad::ASSIMPReader(dsc).readVolumes(fname, unit);
if ( volumes.empty() ) {
except("CAD_Volume","+++ CAD file: %s does not contain any "
Markus FRANK
committed
"understandable tessellated volumes.", fname.c_str());
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
}
Volume envelope;
if ( elt.hasChild(_U(envelope)) ) {
string typ = "DD4hep_StdVolume";
xml_h x_env = elt.child(_U(envelope));
TObject* pvol = PluginService::Create<TObject*>(typ, &dsc, &x_env);
envelope = dynamic_cast<TGeoVolume*>(pvol);
if ( !envelope.isValid() ) {
except("CAD_Volume",
"+++ Unable to determine envelope to CAD shape: %s",fname.c_str());
}
}
else {
envelope = Assembly("envelope");
}
xml_dim_t x_envpos = elt.child(_U(position),false);
xml_dim_t x_envrot = elt.child(_U(rotation),false);
Position env_pos;
RotationZYX env_rot;
if ( x_envpos && x_envrot ) {
env_rot = RotationZYX(x_envrot.z(0), x_envrot.y(0), x_envrot.x(0));
env_pos = Position(x_envpos.x(0), x_envpos.y(0), x_envpos.z(0));
}
else if ( x_envpos )
env_pos = Position(x_envpos.x(0), x_envpos.y(0), x_envpos.z(0));
else if ( x_envrot )
env_rot = RotationZYX(x_envrot.z(0), x_envrot.y(0), x_envrot.x(0));
Transform3D env_trafo(env_rot, env_pos);
Material default_material;
xml_dim_t x_mat = elt.child(_U(material),false);
if ( x_mat.ptr() ) default_material = dsc.material(x_mat.nameStr());
else if ( elt.hasAttr(_U(material)) ) default_material = dsc.material(elt.attr<string>(_U(material)));
if ( elt.hasChild(_U(volume)) ) {
Markus FRANK
committed
map<int, xml_h> volume_map;
Markus FRANK
committed
volume_map.emplace(xml_dim_t(c).id(),c);
for (size_t i=0; i < volumes.size(); ++i) {
Volume vol = volumes[i].release();
Material mat = default_material;
auto is = volume_map.find(i);
if ( is == volume_map.end() ) {
envelope.placeVolume(vol);
}
else {
xml_dim_t x_vol = (*is).second;
xml_dim_t x_pos = x_vol.child(_U(position),false);
xml_dim_t x_rot = x_vol.child(_U(rotation),false);
if ( x_vol.hasAttr(_U(material)) ) {
Markus FRANK
committed
string mat_name = x_vol.attr<string>(_U(material));
mat = dsc.material(mat_name);
if ( !mat.isValid() )
except("CAD_MultiVolume","+++ Failed to access material "+mat_name);
vol.setMaterial(mat);
}
Position pos;
RotationZYX rot;
if ( x_pos && x_rot ) {
rot = RotationZYX(x_rot.z(0), x_rot.y(0), x_rot.x(0));
pos = Position(x_pos.x(0), x_pos.y(0), x_pos.z(0));
}
else if ( x_pos )
pos = Position(x_pos.x(0), x_pos.y(0), x_pos.z(0));
else if ( x_rot )
rot = RotationZYX(x_rot.z(0), x_rot.y(0), x_rot.x(0));
PlacedVolume pv = envelope.placeVolume(vol,env_trafo*Transform3D(rot, pos));
vol.setAttributes(dsc, x_vol.regionStr(), x_vol.limitsStr(), x_vol.visStr());
for (xml_coll_t cc(x_vol,_U(physvolid)); cc; ++cc ) {
xml_dim_t vid = cc;
pv.addPhysVolID(vid.nameStr(), vid.attr<int>(_U(value)));
}
}
}
}
else {
Markus FRANK
committed
for(size_t i=0; i < volumes.size(); ++i) {
Volume vol = volumes[i].release();
if ( vol.isValid() ) {
if ( (vol.material() == dsc.air()) && default_material.isValid() )
vol.setMaterial(default_material);
envelope.placeVolume(vol);
}
}
}
if ( elt.hasAttr(_U(name)) ) envelope->SetName(elt.attr<string>(_U(name)).c_str());
return envelope;
}
DECLARE_XML_VOLUME(CAD_MultiVolume__volume_constructor,create_CAD_Volume)
Markus FRANK
committed
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/// CAD volume importer plugin
/**
*
*/
static long CAD_export(Detector& description, int argc, char** argv) {
bool recursive = false, help = false;
string volume, detector, fname, ftype;
double scale = 1.0;
for(int i = 0; i < argc && argv[i]; ++i) {
if ( 0 == ::strncmp( "-output",argv[i],4) ) fname = argv[++i];
else if ( 0 == ::strncmp("--output",argv[i],5) ) fname = argv[++i];
else if ( 0 == ::strncmp( "-type",argv[i],4) ) ftype = argv[++i];
else if ( 0 == ::strncmp("--type",argv[i],5) ) ftype = argv[++i];
else if ( 0 == ::strncmp( "-detector",argv[i],4) ) detector = argv[++i];
else if ( 0 == ::strncmp("--detector",argv[i],5) ) detector = argv[++i];
else if ( 0 == ::strncmp( "-volume",argv[i],4) ) volume = argv[++i];
else if ( 0 == ::strncmp("--volume",argv[i],5) ) volume = argv[++i];
else if ( 0 == ::strncmp( "-recursive",argv[i],4) ) recursive = true;
else if ( 0 == ::strncmp("--recursive",argv[i],5) ) recursive = true;
else if ( 0 == ::strncmp( "-scale",argv[i],4) ) scale = ::atof(argv[++i]);
else if ( 0 == ::strncmp("--scale",argv[i],5) ) scale = ::atof(argv[++i]);
else if ( 0 == ::strncmp( "-help",argv[i],2) ) help = true;
else if ( 0 == ::strncmp("--help",argv[i],3) ) help = true;
}
if ( fname.empty() || ftype.empty() ) help = true;
if ( volume.empty() && detector.empty() ) help = true;
if ( help ) {
cout <<
"Usage: -plugin DD4hep_CAD_export -arg [-arg] \n\n"
" -output <string> Output file name. \n"
" -type <string> Output file type. \n"
" -recursive Export volume/detector element and all daughters.\n"
" -volume <string> Path to the volume to be exported. \n"
" -detector <string> Path to the detector element to be exported. \n"
" -help Print this help output. \n"
" -scale <number> Unit scale before writing output data. \n"
" Arguments given: " << arguments(argc,argv) << endl << flush;
::exit(EINVAL);
}
PlacedVolume pv;
if ( !detector.empty() ) {
DetElement elt;
if ( detector == "/world" )
elt = description.world();
else
elt = detail::tools::findElement(description,detector);
if ( !elt.isValid() ) {
except("DD4hep_CAD_export","+++ Invalid DetElement path: %s",detector.c_str());
}
if ( !elt.placement().isValid() ) {
except("DD4hep_CAD_export","+++ Invalid DetElement placement: %s",detector.c_str());
}
pv = elt.placement();
}
else if ( !volume.empty() ) {
pv = detail::tools::findNode(description.world().placement(), volume);
if ( !pv.isValid() ) {
except("DD4hep_CAD_export","+++ Invalid placement path: %s",volume.c_str());
}
}
cad::ASSIMPWriter wr(description);
std::vector<PlacedVolume> places {pv};
auto num_mesh = wr.write(fname, ftype, places, recursive, scale);
if ( num_mesh < 0 ) {
printout(ERROR, "DD4hep_CAD_export","+++ Failed to export shapes to CAD file: %s [%s]",
fname.c_str(), ftype.c_str());
}
return 1;
}
DECLARE_APPLY(DD4hep_CAD_export,CAD_export)