File indexing completed on 2025-04-03 08:03:15
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023 #include "DD4hep/Printout.h"
0024 #include "DD4hep/Factories.h"
0025 #include "DD4hep/Detector.h"
0026 #include "DD4hep/DetectorTools.h"
0027 #include <fstream>
0028 #include <cerrno>
0029
0030 using namespace dd4hep;
0031
0032 static int print_segmentation(Detector& detector, int argc, char** argv) {
0033 std::string placement_path;
0034 printout(ALWAYS, "PrintSegments", "+++ ------------------------------------------------------------------");
0035 for( int i=0; i<argc; ++i ) {
0036 printout(ALWAYS, "PrintSegments", "+++ Argument: %s", argv[i]);
0037 placement_path = argv[i];
0038 }
0039 if( placement_path.empty() ) {
0040 printout(ALWAYS, "PrintSegments", "+++ No sensitive placed volume name given.");
0041 return EINVAL;
0042 }
0043 PlacedVolume pv = detail::tools::findNode(detector.world().placement(), placement_path);
0044 if( !pv.isValid() ) {
0045 printout(ALWAYS, "PrintSegments", "+++ No sensitive placed volume with path %s found.", placement_path.c_str());
0046 }
0047 printout(ALWAYS, "PrintSegments", "+++ Got placement %s: %p", placement_path.c_str(), (void*)pv.ptr());
0048 pv.volume();
0049
0050 return 1;
0051 }
0052 DECLARE_APPLY(DD4hep_PrintSegmentation,print_segmentation)