114G4int G4GMocrenFileSceneHandler::kSceneIdCount = 0;
127 kMessenger(messenger),
129 kbSetModalityVoxelSize(false),
130 kbModelingTrajectory(false),
132 kFlagInModeling(false),
133 kFlagSaving_g4_gdd(false),
134 kFlagParameterization(0),
135 kFlagProcessedInteractiveScorer(false) {
138 if(std::getenv(
"G4GMocrenFile_DEST_DIR") == NULL) {
139 kGddDestDir[0] =
'\0';
145 const char * env = std::getenv(
"G4GMocrenFile_DEST_DIR");
148 G4Exception(
"G4GMocrenFileSceneHandler::G4GMocrenFileSceneHandler(*)",
150 "Invalid length of string set in G4GMocrenFile_DEST_DIR");
152 std::strncpy(kGddDestDir, env, len+1);
159 if ( std::getenv(
"G4GMocrenFile_MAX_FILE_NUM" ) != NULL ) {
160 char * pcFileNum = std::getenv(
"G4GMocrenFile_MAX_FILE_NUM");
162 std::strncpy(c10FileNum, pcFileNum, 9);
163 c10FileNum[9] =
'\0';
164 kMaxFileNum = std::atoi(c10FileNum);
169 if( kMaxFileNum < 1 ) { kMaxFileNum = 1 ; }
171 InitializeParameters();
187 if(kgMocrenIO != NULL)
delete kgMocrenIO;
192void G4GMocrenFileSceneHandler::InitializeParameters() {
194 kbSetModalityVoxelSize =
false;
196 for(
G4int i = 0; i < 3; i++) {
197 kModalitySize[i] = 0;
198 kNestedVolumeDimension[i] = 0;
199 kNestedVolumeDirAxis[i] = -1;
210 const G4int MAX_FILE_INDEX = kMaxFileNum - 1 ;
213 std::strncpy(kGddFileName, kGddDestDir,
sizeof(kGddFileName)-1);
214 kGddFileName[
sizeof(kGddFileName)-1] =
'\0';
218 sizeof(kGddFileName) - std::strlen(kGddFileName) - 1);
221 static G4int currentNumber = 0;
222 for(
G4int i = currentNumber ; i < kMaxFileNum ; i++) {
225 if( i == MAX_FILE_INDEX )
228 G4cout <<
"===========================================" <<
G4endl;
229 G4cout <<
"WARNING MESSAGE from GMocrenFile driver: " <<
G4endl;
230 G4cout <<
" This file name is the final one in the " <<
G4endl;
231 G4cout <<
" automatic updation of the output file name." <<
G4endl;
232 G4cout <<
" You may overwrite existing files, i.e. " <<
G4endl;
234 G4cout <<
"===========================================" <<
G4endl;
239 std::ostringstream filename;
242 << std::setw(2) << std::setfill(
'0') << i <<
".wrl";
243 strncpy(kGddFileName,filename.str().c_str(),
sizeof(kGddFileName)-1);
244 kGddFileName[
sizeof(kGddFileName)-1] =
'\0';
247 std::ifstream fin(kGddFileName);
249 G4cout <<
"FILEOPEN: " << i <<
" : " << kGddFileName << fin.fail()
263 G4cout <<
"======================================================================" <<
G4endl;
265 G4cout <<
"Destination directory (current dir if NULL): " << kGddDestDir <<
G4endl;
266 G4cout <<
"Maximum number of files in the destination directory: " << kMaxFileNum <<
G4endl;
268 G4cout <<
" * The maximum number is customizable as: " <<
G4endl;
269 G4cout <<
" % setenv G4GMocrenFile_MAX_FILE_NUM number " <<
G4endl;
270 G4cout <<
" * The destination directory is customizable as:" <<
G4endl;
271 G4cout <<
" % setenv G4GMocrenFile_DEST_DIR dir_name/ " <<
G4endl;
272 G4cout <<
" ** Do not forget \"/\" at the end of the dir_name, e.g. \"./tmp/\"." <<
G4endl;
276 G4cout <<
"======================================================================" <<
G4endl;
290 G4cout <<
"***** (started) " ;
295 kFlagSaving_g4_gdd =
true;
302 kgMocrenIO->setModalityImageMinMax(minmax);
303 std::vector<G4float>
map;
305 for(
G4int i = minmax[0]; i <= minmax[1]; i++) {
309 kgMocrenIO->setModalityImageDensityMap(
map);
337 kgMocrenIO->clearDoseDistAll();
338 kgMocrenIO->clearROIAll();
339 kgMocrenIO->clearTracks();
340 kgMocrenIO->clearDetector();
341 std::vector<Detector>::iterator itr = kDetectors.begin();
342 for(; itr != kDetectors.end(); itr++) {
347 kNestedHitsList.clear();
348 kNestedVolumeNames.clear();
360 G4cout <<
"***** (started) (close "
361 << kGddFileName <<
")" <<
G4endl;
363 if(kGddDest) kGddDest.close();
364 kFlagSaving_g4_gdd =
false;
366 std::map<Index3D, G4float>::iterator itr = kNestedModality.begin();
367 G4int xmax=0, ymax=0, zmax=0;
368 for(; itr != kNestedModality.end(); itr++) {
369 if(itr->first.x > xmax) xmax = itr->first.x;
370 if(itr->first.y > ymax) ymax = itr->first.y;
371 if(itr->first.z > zmax) zmax = itr->first.z;
374 kModalitySize[0] = xmax+1;
375 kModalitySize[1] = ymax+1;
376 kModalitySize[2] = zmax+1;
377 kgMocrenIO->setModalityImageSize(kModalitySize);
378 if(
GFDEBUG)
G4cout <<
"gMocren-file driver : modality size : "
379 << kModalitySize[0] <<
" x "
380 << kModalitySize[1] <<
" x "
381 << kModalitySize[2] <<
G4endl;
383 G4int nxy = kModalitySize[0]*kModalitySize[1];
385 for(
G4int z = 0; z < kModalitySize[2]; z++) {
386 short * modality =
new short[nxy];
387 for(
G4int y = 0; y < kModalitySize[1]; y++) {
388 for(
G4int x = 0; x < kModalitySize[0]; x++) {
392 G4int ixy = x + y*kModalitySize[0];
394 itr = kNestedModality.find(idx);
395 if(itr != kNestedModality.end()) {
397 modality[ixy] = kgMocrenIO->convertDensityToHU(itr->second);
399 modality[ixy] = -1024;
404 kgMocrenIO->setModalityImage(modality);
408 size_t nhits = kNestedHitsList.size();
411 std::map<Index3D, G4double>::iterator hitsItr;
412 std::map<G4String, std::map<Index3D, G4double> >::iterator hitsListItr = kNestedHitsList.begin();
414 for(
G4int n = 0; hitsListItr != kNestedHitsList.end(); hitsListItr++, n++) {
416 kgMocrenIO->newDoseDist();
417 kgMocrenIO->setDoseDistName(hitsListItr->first, n);
418 kgMocrenIO->setDoseDistSize(kModalitySize, n);
421 for(
G4int z = 0 ; z < kModalitySize[2]; z++) {
423 for(
G4int y = 0; y < kModalitySize[1]; y++) {
424 for(
G4int x = 0; x < kModalitySize[0]; x++) {
426 G4int ixy = x + y*kModalitySize[0];
428 hitsItr = hitsListItr->second.find(idx);
429 if(hitsItr != hitsListItr->second.end()) {
431 values[ixy] = hitsItr->second;
435 if(values[ixy] < minmax[0]) minmax[0] = values[ixy];
436 if(values[ixy] > minmax[1]) minmax[1] = values[ixy];
439 kgMocrenIO->setDoseDist(values, n);
441 kgMocrenIO->setDoseDistMinMax(minmax, n);
443 if(minmax[0] < 0) lower = minmax[0];
444 G4double scale = (minmax[1]-lower)/25000.;
445 kgMocrenIO->setDoseDistScale(scale, n);
447 kgMocrenIO->setDoseDistUnit(sunit, n);
455 trans = kVolumeTrans3D.getTranslation();
456 rot = kVolumeTrans3D.getRotation().
inverse();
458 std::vector<G4float *> tracks;
459 unsigned char colors[3];
461 tracks.push_back(trk);
463 G4ThreeVector orig(0.,0.,0), xa(2000.,0.,0.), ya(0.,2000.,0.), za(0.,0.,2000.);
472 for(
G4int i = 0; i < 3; i++) trk[i] = orig[i];
473 for(
G4int i = 0; i < 3; i++) trk[i+3] = xa[i];
474 colors[0] = 255; colors[1] = 0; colors[2] = 0;
475 kgMocrenIO->addTrack(tracks, colors);
477 for(
G4int i = 0; i < 3; i++) trk[i+3] = ya[i];
478 colors[0] = 0; colors[1] = 255; colors[2] = 0;
479 kgMocrenIO->addTrack(tracks, colors);
481 for(
G4int i = 0; i < 3; i++) trk[i+3] = za[i];
482 colors[0] = 0; colors[1] = 0; colors[2] = 255;
483 kgMocrenIO->addTrack(tracks, colors);
491 std::vector<G4float> transformObjects;
492 for(
G4int i = 0; i < 3; i++) {
494 transformObjects.push_back((kVolumeSize[i]/2. - kVoxelDimension[i]/2.));
500 kgMocrenIO->translateTracks(transformObjects);
501 kgMocrenIO->translateDetector(transformObjects);
504 kgMocrenIO->storeData(kGddFileName);
518 G4cout <<
"***** G4GMocrenFileSceneHandler::GFBeginModeling (called & started)" <<
G4endl;
523 kFlagInModeling = true ;
532 std::vector<G4Scene::Model>::iterator itr = vmodel.begin();
533 for(; itr != vmodel.end(); itr++) {
534 G4cout <<
" IIIIII model name: " << itr->fpModel->GetGlobalTag() <<
G4endl;
550 static G4bool warned =
false;
554 (
"G4GMocrenFileSceneHandler::AddPrimitive (const G4Polyline&)",
556 "2D polylines not implemented. Ignored.");
564 static G4int numTrajectories = 0;
568 if(kbModelingTrajectory) {
573 (
"G4VSceneHandler::AddCompound(const G4Polyline&)",
579 trans = kVolumeTrans3D.getTranslation();
580 rot = kVolumeTrans3D.getRotation().
inverse();
583 std::vector<G4float *> trajectory;
584 if(polyline.size() < 2)
return;
585 G4Polyline::const_iterator preitr = polyline.begin();
586 G4Polyline::const_iterator postitr = preitr; postitr++;
587 for(; postitr != polyline.end(); preitr++, postitr++) {
591 G4ThreeVector postPts(postitr->x(), postitr->y(), postitr->z());
595 stepPts[0] = prePts.
x();
596 stepPts[1] = prePts.
y();
597 stepPts[2] = prePts.
z();
598 stepPts[3] = postPts.
x();
599 stepPts[4] = postPts.
y();
600 stepPts[5] = postPts.
z();
601 trajectory.push_back(stepPts);
605 << stepPts[0] <<
", "
606 << stepPts[1] <<
", "
607 << stepPts[2] <<
") - ("
608 << stepPts[3] <<
", "
609 << stepPts[4] <<
", "
610 << stepPts[5] <<
")" <<
G4endl;
616 unsigned char trkcolor[3];
617 trkcolor[0] = (
unsigned char)(color.
GetRed()*255);
618 trkcolor[1] = (
unsigned char)(color.
GetGreen()*255);
619 trkcolor[2] = (
unsigned char)(color.
GetBlue()*255);
627 kgMocrenIO->addTrack(trajectory, trkcolor);
639 static G4bool warned =
false;
643 (
"G4GMocrenFileSceneHandler::AddPrimitive (const G4Text&)",
645 "2D text not implemented. Ignored.");
670 static G4bool warned =
false;
674 (
"G4GMocrenFileSceneHandler::AddPrimitive (const G4Circle&)",
676 "2D circles not implemented. Ignored.");
699 static G4bool warned =
false;
703 (
"G4GMocrenFileSceneHandler::AddPrimitive (const G4Square&)",
705 "2D squares not implemented. Ignored.");
725 G4cout <<
"***** AddPrimitive( G4Polyhedron )" <<
G4endl;
731 static G4bool warned =
false;
735 (
"G4GMocrenFileSceneHandler::AddPrimitive (const G4Polyhedron&)",
737 "2D polyhedra not implemented. Ignored.");
747 G4bool notLastEdge =
true;
758 }
while (notLastEdge);
769 "ERROR G4GMocrenFileSceneHandler::AddPrimitive(G4Polyhedron)" <<
G4endl;
780 "\nG4Polyhedron facet with " << i <<
" edges" <<
G4endl;
799 G4cout <<
"***** GFEndModeling (started) " ;
800 G4cout <<
"(/EndModeling, /DrawAll, /CloseDevice)" <<
G4endl;
807 kFlagInModeling = false ;
846 G4cout <<
"G4GMocrenFileSceneHandler::AddSolid(const G4Box&) : "
850 if( !IsVisible() ) { return ; }
866 for(
G4int i = 0; i < 12; i++) {
869 G4cout <<
" (" << v1.
x() <<
", "
874 << v2.
z() <<
") [" << next <<
"]"
882 G4String volName = kMessenger.getVolumeName();
885 if(kFlagParameterization != 2) {
890 if(pScBox != NULL) bMesh =
true;
891 if(bMesh) kFlagParameterization = 2;
893 << volName <<
" - " << bMesh <<
G4endl;
898 if (!pv_model) { return ; }
901 if (!pPVModel) { return ; }
913 G4cout <<
" density : " << dens <<
" [g/cm3]" <<
G4endl;
934 kVolumeTrans3D = kVolumeTrans3D*trot;
943 G4Exception(
"G4GMocrenFileSceneHandler::AddSolid( const G4Box& box )",
946 G4int dirAxis[3] = {-1,-1,-1};
947 G4int nDaughters[3] = {0,0,0};
951 nDaughters[0] = nReplicas;
953 case kXAxis: dirAxis[0] = 0;
break;
954 case kYAxis: dirAxis[0] = 1;
break;
955 case kZAxis: dirAxis[0] = 2;
break;
957 G4Exception(
"G4GMocrenFileSceneHandler::AddSolid( const G4Box& box )",
960 kNestedVolumeNames.push_back(pv[0]->
GetName());
963 <<
" # : " << nDaughters[0] <<
G4endl;
967 if(pv[0]->GetLogicalVolume()->GetNoDaughters()) {
968 G4cout <<
"# of daughters : "
979 if(pv[0]->GetLogicalVolume()->GetNoDaughters() == 0) {
980 kFlagParameterization = 1;
985 if(kFlagParameterization == 0) {
990 nDaughters[1] = nReplicas;
992 case kXAxis: dirAxis[1] = 0;
break;
993 case kYAxis: dirAxis[1] = 1;
break;
994 case kZAxis: dirAxis[1] = 2;
break;
996 G4Exception(
"G4GMocrenFileSceneHandler::AddSolid( const G4Box& box )",
999 kNestedVolumeNames.push_back(pv[1]->
GetName());
1002 <<
" # : " << nDaughters[1]<<
G4endl;
1008 kNestedVolumeNames.push_back(pv[2]->
GetName());
1011 <<
" # : " << nDaughters[2] <<
G4endl;
1013 if(nDaughters[2] > 1) {
1016 if(nestPara == NULL)
1017 G4Exception(
"G4GMocrenFileSceneHandler::AddSolid( const G4Box& box )",
1026 G4cout << trans0 <<
" - " << trans1 <<
" - " << diff <<
G4endl;
1028 if(diff.
x() != 0.) dirAxis[2] = 0;
1029 else if(diff.
y() != 0.) dirAxis[2] = 1;
1030 else if(diff.
z() != 0.) dirAxis[2] = 2;
1032 G4Exception(
"G4GMocrenFileSceneHandler::AddSolid( const G4Box& box )",
1033 "gMocren0009",
FatalException,
"Unexpected nested parameterisation");
1038 for(
G4int i = 0; i < 3; i++) {
1039 kNestedVolumeDimension[i] = nDaughters[i];
1041 kNestedVolumeDirAxis[i] = dirAxis[i];
1049 if(nestPara != NULL) {
1050 G4double prexyz[3] = {0.,0.,0.}, xyz[3] = {0.,0.,0.};
1051 for(
G4int n0 = 0; n0 < nDaughters[0]; n0++) {
1052 for(
G4int n1 = 0; n1 < nDaughters[1]; n1++) {
1053 for(
G4int n2 = 0; n2 < nDaughters[2]; n2++) {
1057 G4cout <<
" retrieve volume : copy # : " << n0
1058 <<
", " << n1 <<
", " << n2 <<
G4endl;
1064 G4cout <<
" density :" << dens <<
" [g/cm3]" <<
G4endl;
1071 if(n0 != 0 || n1 != 0 || n2 != 0) {
1072 for(
G4int i = 0; i < 3; i++) {
1073 if(xyz[i] != prexyz[i])
1074 G4Exception(
"G4GMocrenFileSceneHandler::AddSolid( const G4Box& box )",
1084 idx[dirAxis[0]] = n0;
1085 idx[dirAxis[1]] = n1;
1086 idx[dirAxis[2]] = n2;
1087 Index3D i3d(idx[0],idx[1],idx[2]);
1088 kNestedModality[i3d] = dens;
1090 G4cout <<
" index: " << idx[0] <<
", " << idx[1] <<
", " << idx[2]
1091 <<
" density: " << dens <<
G4endl;
1093 for(
G4int i = 0; i < 3; i++) prexyz[i] = xyz[i];
1102 if(!kbSetModalityVoxelSize) {
1104 static_cast<G4float>(2*xyz[1]),
1105 static_cast<G4float>(2*xyz[2])};
1106 kgMocrenIO->setVoxelSpacing(spacing);
1107 kVoxelDimension.set(spacing[0], spacing[1], spacing[2]);
1108 kbSetModalityVoxelSize =
true;
1114 G4Exception(
"G4GMocrenFileSceneHandler::AddSolid( const G4Box& box )",
1128 G4cout <<
" physical volume node id : "
1129 <<
"size: " << npvp <<
", PV name: ";
1130 for(
G4int i = 0; i < npvp; i++) {
1133 << pPVModel->
GetDrawnPVPath()[i].GetPhysicalVolume()->IsParameterised()
1135 << pPVModel->
GetDrawnPVPath()[i].GetPhysicalVolume()->IsReplicated();
1136 if(pPVModel->
GetDrawnPVPath()[i].GetPhysicalVolume()->GetParameterisation()) {
1138 << pPVModel->
GetDrawnPVPath()[i].GetPhysicalVolume()->GetParameterisation()->IsNested();
1141 << pPVModel->
GetDrawnPVPath()[i].GetPhysicalVolume()->GetCopyNo();
1150 G4Box * pbox =
dynamic_cast<G4Box *
>(pPVModel->
GetDrawnPVPath()[npvp-2].GetPhysicalVolume()->GetLogicalVolume()->GetSolid());
1155 G4cout <<
" mother size ["
1156 << pPVModel->
GetDrawnPVPath()[npvp-2].GetPhysicalVolume()->GetName()
1158 << pareDims[0] <<
" x "
1159 << pareDims[1] <<
" x "
1160 << pareDims[2] <<
" [mm3]"
1164 G4Box * boxP =
dynamic_cast<G4Box *
>(pPVModel->
GetDrawnPVPath()[npvp-1].GetPhysicalVolume()->GetLogicalVolume()->GetSolid());
1169 G4cout <<
" parameterised volume? ["
1170 << pPVModel->
GetDrawnPVPath()[npvp-1].GetPhysicalVolume()->GetName()
1172 << paraDims[0] <<
" x "
1173 << paraDims[1] <<
" x "
1174 << paraDims[2] <<
" [mm3] : "
1175 <<
G4int(pareDims[0]/paraDims[0]) <<
" x "
1176 <<
G4int(pareDims[1]/paraDims[1]) <<
" x "
1180 <<
" isn't a G4Box." <<
G4endl;
1186 }
else if(kFlagParameterization == 1) {
1191 if(phantomPara == NULL) {
1192 G4Exception(
"G4GMocrenFileSceneHandler::AddSolid( const G4Box& box )",
1201 kNestedVolumeDirAxis[0] = 0;
1202 kNestedVolumeDirAxis[1] = 1;
1203 kNestedVolumeDirAxis[2] = 2;
1206 G4int nX = kNestedVolumeDimension[0];
1207 G4int nXY = kNestedVolumeDimension[0]*kNestedVolumeDimension[1];
1209 for(
G4int n0 = 0; n0 < kNestedVolumeDimension[0]; n0++) {
1210 for(
G4int n1 = 0; n1 < kNestedVolumeDimension[1]; n1++) {
1211 for(
G4int n2 = 0; n2 < kNestedVolumeDimension[2]; n2++) {
1213 G4int repNo = n0 + n1*nX + n2*nXY;
1219 idx[kNestedVolumeDirAxis[0]] = n0;
1220 idx[kNestedVolumeDirAxis[1]] = n1;
1221 idx[kNestedVolumeDirAxis[2]] = n2;
1222 Index3D i3d(idx[0],idx[1],idx[2]);
1223 kNestedModality[i3d] = dens;
1226 G4cout <<
" index: " << idx[0] <<
", " << idx[1] <<
", " << idx[2]
1227 <<
" density: " << dens <<
G4endl;
1238 if(!kbSetModalityVoxelSize) {
1242 kgMocrenIO->setVoxelSpacing(spacing);
1243 kVoxelDimension.set(spacing[0], spacing[1], spacing[2]);
1244 kbSetModalityVoxelSize =
true;
1252 if(!kFlagProcessedInteractiveScorer) {
1269 kNestedVolumeDimension[0] = nVoxels[2];
1270 kNestedVolumeDimension[1] = nVoxels[1];
1271 kNestedVolumeDimension[2] = nVoxels[0];
1272 kNestedVolumeDirAxis[0] = 2;
1273 kNestedVolumeDirAxis[1] = 1;
1274 kNestedVolumeDirAxis[2] = 0;
1277 for(
G4int n0 = 0; n0 < kNestedVolumeDimension[0]; n0++) {
1278 for(
G4int n1 = 0; n1 < kNestedVolumeDimension[1]; n1++) {
1279 for(
G4int n2 = 0; n2 < kNestedVolumeDimension[2]; n2++) {
1284 idx[kNestedVolumeDirAxis[0]] = n0;
1285 idx[kNestedVolumeDirAxis[1]] = n1;
1286 idx[kNestedVolumeDirAxis[2]] = n2;
1287 Index3D i3d(idx[0],idx[1],idx[2]);
1288 kNestedModality[i3d] = dens;
1296 G4cout <<
"Interactive Scorer : size - "
1297 << boxSize.
x()/cm <<
" x "
1298 << boxSize.
y()/cm <<
" x "
1299 << boxSize.
z()/cm <<
" [cm3]" <<
G4endl;
1300 G4cout <<
"Interactive Scorer : # voxels - "
1301 << nVoxels[0] <<
" x "
1302 << nVoxels[1] <<
" x "
1305 kVolumeSize.
set(boxSize.
x()*2,
1310 if(!kbSetModalityVoxelSize) {
1312 static_cast<G4float>(boxSize.
y()*2/nVoxels[1]),
1313 static_cast<G4float>(boxSize.
z()*2/nVoxels[2])};
1315 kgMocrenIO->setVoxelSpacing(spacing);
1316 kVoxelDimension.set(spacing[0], spacing[1], spacing[2]);
1317 kbSetModalityVoxelSize =
true;
1327 kVolumeTrans3D = kVolumeTrans3D*sbtranslate;
1335 kVolumeTrans3D = kVolumeTrans3D*sbrotate;
1347 kVolumeTrans3D = kVolumeTrans3D*trotY*trotZ;
1352 kFlagProcessedInteractiveScorer =
true;
1363 if(!kMessenger.getDrawVolumeGrid()) {
1365 if(kFlagParameterization == 0) {
1384 if(volName == box.
GetName()) {
1388 std::vector<G4String>::iterator itr = kNestedVolumeNames.begin();
1389 for(; itr != kNestedVolumeNames.end(); itr++) {
1395 }
else if(kFlagParameterization == 1) {
1406 if(volDSolidName == box.
GetName()) {
1410 }
else if(kFlagParameterization == 2) {
1415 if(bAddDet) AddDetector(box);
1429 if( !IsVisible() ) { return ; }
1444 for(
G4int i = 0; i < nv; i++) {
1453 if (!pv_model) { return ; }
1456 if (!pPVModel) { return ; }
1472 if( !IsVisible() ) { return ; }
1491 if( !IsVisible() ) { return ; }
1509 if( !IsVisible() ) { return ; }
1515 AddDetector(sphere);
1527 if( !IsVisible() ) { return ; }
1545 if( !IsVisible() ) { return ; }
1564 if( !IsVisible() ) { return ; }
1580 if( !IsVisible() ) { return ; }
1600 kbModelingTrajectory =
true;
1605 G4cout <<
" ::AddCompound(const G4VTrajectory&) >>>>>>>>> " <<
G4endl;
1609 (
"G4VSceneHandler::AddCompound(const G4VTrajectory&)",
1623 for(
G4int i = 0; i < nPnt; i++) {
1631 kbModelingTrajectory =
false;
1653 std::vector<G4String> hitNames = kMessenger.getHitNames();
1655 std::vector<G4String>::iterator itr = hitNames.begin();
1656 for(; itr != hitNames.end(); itr++)
1664 G4bool bid[3] = {
false,
false,
false};
1667 std::vector<G4AttValue>::iterator itr;
1669 for(itr = attval->begin(); itr != attval->end(); itr++) {
1670 std::string stmp = itr->GetValue();
1671 std::istringstream sval(stmp.c_str());
1673 if(itr->GetName() ==
G4String(
"XID")) {
1678 if(itr->GetName() ==
G4String(
"YID")) {
1683 if(itr->GetName() ==
G4String(
"ZID")) {
1692 if(bid[0] && bid[1] && bid[2]) {
1695 G4cout <<
" Hit : index(" <<
id.x <<
", " <<
id.y <<
", "
1696 <<
id.z <<
")" <<
G4endl;
1699 for(itr = attval->begin(); itr != attval->end(); itr++) {
1700 for(
G4int i = 0; i < nhitname; i++) {
1701 if(itr->GetName() == hitNames[i]) {
1703 std::string stmp = itr->GetValue();
1704 std::istringstream sval(stmp.c_str());
1707 sval >> value >> unit;
1709 std::map<G4String, std::map<Index3D, G4double> >::iterator kNestedHitsListItr;
1710 kNestedHitsListItr = kNestedHitsList.find(hitNames[i]);
1711 if(kNestedHitsListItr != kNestedHitsList.end()) {
1714 kNestedHitsListItr->second[id] = value;
1716 std::map<Index3D, G4double> hits;
1717 hits.insert(std::map<Index3D, G4double>::value_type(
id, value));
1718 kNestedHitsList[hitNames[i]] = std::move(hits);
1723 G4cout <<
" : " << hitNames[i] <<
" -> " << value
1724 <<
" [" << unit <<
"]" <<
G4endl;
1729 G4Exception(
"G4GMocrenFileSceneHandler::AddCompound(const G4VHit &)",
1745 G4cout <<
" ::AddCompound(const std::map<G4int, G4double*> &) >>>>>>>>> " <<
G4endl;
1748 std::vector<G4String> hitScorerNames = kMessenger.getHitScorerNames();
1749 G4int nhitname = (
G4int)hitScorerNames.size();
1767 std::map<G4int, G4double*> *
map = hits.
GetMap();
1768 std::map<G4int, G4double*>::const_iterator itr =
map->begin();
1769 for(; itr !=
map->end(); itr++) {
1770 GetNestedVolumeIndex(itr->first, idx);
1771 Index3D id(idx[0], idx[1], idx[2]);
1773 std::map<G4String, std::map<Index3D, G4double> >::iterator nestedHitsListItr;
1774 nestedHitsListItr = kNestedHitsList.find(scorername);
1775 if(nestedHitsListItr != kNestedHitsList.end()) {
1776 nestedHitsListItr->second[id] = *(itr->second);
1778 std::map<Index3D, G4double> hit;
1779 hit.insert(std::map<Index3D, G4double>::value_type(
id, *(itr->second)));
1780 kNestedHitsList[scorername] = std::move(hit);
1791 G4cout <<
" >>>>> " << meshname <<
" : " << scorername <<
G4endl;
1793 for(
G4int i = 0; i < nhitname; i++)
1794 if(scorername == hitScorerNames[i])
1795 G4cout <<
" !!!! Hit scorer !!!! " << scorername <<
G4endl;
1798 << kNestedVolumeDimension[0] <<
" x "
1799 << kNestedVolumeDimension[1] <<
" x "
1800 << kNestedVolumeDimension[2] <<
G4endl;
1803 std::map<G4int, G4double*> *
map = hits.
GetMap();
1804 std::map<G4int, G4double*>::const_iterator itr =
map->begin();
1805 for(; itr !=
map->end(); itr++) {
1806 GetNestedVolumeIndex(itr->first,
id);
1807 G4cout <<
"[" << itr->first <<
"] "
1808 <<
"("<<
id[0] <<
"," <<
id[1] <<
"," <<
id[2] <<
")"
1809 << *(itr->second) <<
", ";
1817 G4cout <<
" ::AddCompound(const std::map<G4int, G4StatDouble*> &) >>>>>>>>> " <<
G4endl;
1820 std::vector<G4String> hitScorerNames = kMessenger.getHitScorerNames();
1821 G4int nhitname = (
G4int)hitScorerNames.size();
1839 std::map<G4int, G4StatDouble*> *
map = hits.
GetMap();
1840 std::map<G4int, G4StatDouble*>::const_iterator itr =
map->begin();
1841 for(; itr !=
map->end(); itr++) {
1842 GetNestedVolumeIndex(itr->first, idx);
1843 Index3D id(idx[0], idx[1], idx[2]);
1845 std::map<G4String, std::map<Index3D, G4double> >::iterator nestedHitsListItr;
1846 nestedHitsListItr = kNestedHitsList.find(scorername);
1847 if(nestedHitsListItr != kNestedHitsList.end()) {
1848 nestedHitsListItr->second[id] = itr->second->sum_wx();
1850 std::map<Index3D, G4double> hit;
1851 hit.insert(std::map<Index3D, G4double>::value_type(
id, itr->second->sum_wx()));
1852 kNestedHitsList[scorername] = std::move(hit);
1863 G4cout <<
" >>>>> " << meshname <<
" : " << scorername <<
G4endl;
1865 for(
G4int i = 0; i < nhitname; i++)
1866 if(scorername == hitScorerNames[i])
1867 G4cout <<
" !!!! Hit scorer !!!! " << scorername <<
G4endl;
1870 << kNestedVolumeDimension[0] <<
" x "
1871 << kNestedVolumeDimension[1] <<
" x "
1872 << kNestedVolumeDimension[2] <<
G4endl;
1875 std::map<G4int, G4StatDouble*> *
map = hits.
GetMap();
1876 std::map<G4int, G4StatDouble*>::const_iterator itr =
map->begin();
1877 for(; itr !=
map->end(); itr++) {
1878 GetNestedVolumeIndex(itr->first,
id);
1879 G4cout <<
"[" << itr->first <<
"] "
1880 <<
"("<<
id[0] <<
"," <<
id[1] <<
"," <<
id[2] <<
")"
1881 << itr->second->sum_wx() <<
", ";
1888G4bool G4GMocrenFileSceneHandler::IsVisible()
1891 G4bool visibility = true ;
1919void G4GMocrenFileSceneHandler::AddDetector(
const G4VSolid & solid) {
1924 detector.name = solid.
GetName();
1926 G4cout <<
"0 Detector name : " << detector.name <<
G4endl;
1929 if (!pv_model) { return ; }
1930 G4PhysicalVolumeModel* pPVModel =
1931 dynamic_cast<G4PhysicalVolumeModel*
>(
fpModel);
1932 if (!pPVModel) { return ; }
1935 std::vector<G4float *> dedges;
1937 detector.polyhedron = poly;
1941 unsigned char uccolor[3] = {30, 30, 30};
1944 uccolor[0] = (
unsigned char)(color.
GetRed()*255);
1945 uccolor[1] = (
unsigned char)(color.
GetGreen()*255);
1946 uccolor[2] = (
unsigned char)(color.
GetBlue()*255);
1950 for(
G4int i = 0; i < 3; i++) detector.color[i] = uccolor[i];
1952 kDetectors.push_back(detector);
1955 G4cout <<
"0 color: (" << (
G4int)uccolor[0] <<
", "
1956 << (
G4int)uccolor[1] <<
", " << (
G4int)uccolor[2] <<
")"
1963void G4GMocrenFileSceneHandler::ExtractDetector() {
1965 std::vector<Detector>::iterator itr = kDetectors.begin();
1967 for(; itr != kDetectors.end(); itr++) {
1970 G4String detname = itr->name;
1975 std::vector<G4float *> dedges;
1976 G4Polyhedron * poly = itr->polyhedron;
1987 if(!(poly->
GetNextEdge(v1, v2, next))) bnext =
false;
1989 edge[0] = v1.
x()/mm;
1990 edge[1] = v1.
y()/mm;
1991 edge[2] = v1.
z()/mm;
1992 edge[3] = v2.
x()/mm;
1993 edge[4] = v2.
y()/mm;
1994 edge[5] = v2.
z()/mm;
1995 dedges.push_back(edge);
2000 unsigned char uccolor[3] = {itr->color[0],
2004 kgMocrenIO->addDetector(detname, dedges, uccolor);
2005 for(
G4int i = 0; i < nedges; i++) {
2006 delete [] dedges[i];
2011 G4cout <<
" color: (" << (
G4int)uccolor[0] <<
", "
2012 << (
G4int)uccolor[1] <<
", " << (
G4int)uccolor[2] <<
")"
2018void G4GMocrenFileSceneHandler::GetNestedVolumeIndex(
G4int _idx,
G4int _idx3d[3]) {
2019 if(kNestedVolumeDimension[0] == 0 ||
2020 kNestedVolumeDimension[1] == 0 ||
2021 kNestedVolumeDimension[2] == 0) {
2022 for(
G4int i = 0; i < 3; i++) _idx3d[i] = 0;
2027 if(kFlagParameterization == 0) {
2029 G4int plane = kNestedVolumeDimension[2]*kNestedVolumeDimension[1];
2030 G4int line = kNestedVolumeDimension[2];
2042 _idx3d[kNestedVolumeDirAxis[0]] = _idx/plane;
2043 _idx3d[kNestedVolumeDirAxis[1]] = (_idx%plane)/line;
2044 _idx3d[kNestedVolumeDirAxis[2]] = (_idx%plane)%line;
2071 G4int plane = kNestedVolumeDimension[0]*kNestedVolumeDimension[1];
2072 G4int line = kNestedVolumeDimension[0];
2073 _idx3d[kNestedVolumeDirAxis[2]] = _idx/plane;
2074 _idx3d[kNestedVolumeDirAxis[1]] = (_idx%plane)/line;
2075 _idx3d[kNestedVolumeDirAxis[0]] = (_idx%plane)%line;
2083G4GMocrenFileSceneHandler::Detector::Detector()
2085 color[0] = color[1] = color[2] = 255;
2087G4GMocrenFileSceneHandler::Detector::~Detector() {
2088 if(!polyhedron)
delete polyhedron;
2090void G4GMocrenFileSceneHandler::Detector::clear() {
2092 if(!polyhedron)
delete polyhedron;
2093 color[0] = color[1] = color[2] = 255;
2098G4GMocrenFileSceneHandler::Index3D::Index3D()
2099 : x(0), y(0), z(0) {
2103G4GMocrenFileSceneHandler::Index3D::Index3D(
const Index3D & _index3D)
2104 : x(_index3D.x), y(_index3D.y), z(_index3D.z) {
2114G4GMocrenFileSceneHandler::Index3D::Index3D(
G4int _x,
G4int _y,
G4int _z)
2115 : x(_x), y(_y), z(_z) {
2118G4bool G4GMocrenFileSceneHandler::Index3D::operator < (
const Index3D & _right)
const {
2119 if(z <
static_cast<Index3D
>(_right).z) {
2121 }
else if(z == _right.z) {
2122 if(y <
static_cast<Index3D
>(_right).y)
return true;
2123 else if(y == _right.y)
2124 if(x <
static_cast<Index3D
>(_right).x)
return true;
2128G4bool G4GMocrenFileSceneHandler::Index3D::operator == (
const Index3D & _right)
const {
2129 if(z == _right.z && y == _right.y && x == _right.x)
return true;
const int FR_MAX_FILE_NUM
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
const G4bool GFDEBUG_DIGI
const char GDD_FILE_HEADER[]
const char DEFAULT_GDD_FILE_NAME[]
const G4int MAX_NUM_TRAJECTORIES
G4ThreadLocal T * G4GeomSplitter< T >::offset
HepGeom::Point3D< G4double > G4Point3D
CLHEP::HepRotation G4RotationMatrix
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
Hep3Vector & transform(const HepRotation &)
void set(double x, double y, double z)
HepRotation inverse() const
G4double GetYHalfLength() const
G4Polyhedron * CreatePolyhedron() const override
G4double GetZHalfLength() const
G4double GetXHalfLength() const
G4double GetGreen() const
G4double GetDensity(G4int &_ct) const
G4GMocrenFileSceneHandler(G4GMocrenFile &system, G4GMocrenMessenger &messenger, const G4String &name="")
void AddCompound(const G4VTrajectory &traj)
void BeginSavingGdd(void)
void ClearTransientStore()
void AddSolid(const G4Box &box)
virtual void BeginPrimitives(const G4Transform3D &objectTransformation)
virtual void EndPrimitives()
virtual ~G4GMocrenFileSceneHandler()
void AddPrimitive(const G4Polyline &line)
G4VSolid * GetSolid() const
const G4VisAttributes * GetVisAttributes() const
std::size_t GetNoDaughters() const
G4VPhysicalVolume * GetDaughter(const std::size_t i) const
G4double GetDensity() const
const G4String & GetName() const
G4Material * ComputeMaterial(const G4int repNo, G4VPhysicalVolume *currentVol, const G4VTouchable *parentTouch=nullptr) override
G4double GetVoxelHalfZ() const
std::size_t GetNoVoxelsX() const
G4double GetVoxelHalfY() const
G4double GetVoxelHalfX() const
std::size_t GetNoVoxelsZ() const
std::size_t GetNoVoxelsY() const
const std::vector< G4PhysicalVolumeNodeID > & GetDrawnPVPath() const
G4VPhysicalVolume * GetCurrentPV() const
G4LogicalVolume * GetCurrentLV() const
G4VPhysicalVolume * GetTopPhysicalVolume() const
G4Material * GetCurrentMaterial() const
G4int GetCurrentDepth() const
const std::vector< Model > & GetEndOfEventModelList() const
static G4ScoringManager * GetScoringManager()
G4VScoringMesh * FindMesh(G4VHitsCollection *map)
std::map< G4int, _Tp * > * GetMap() const
const G4VTrajectory * GetCurrentTrajectory() const
G4Polyhedron * CreatePolyhedron() const override
virtual std::vector< G4AttValue > * CreateAttValues() const
void ComputeTransformation(const G4int no, G4VPhysicalVolume *currentPV) const override=0
void ComputeDimensions(G4Box &, const G4int, const G4VPhysicalVolume *) const override
virtual G4Material * ComputeMaterial(G4VPhysicalVolume *currentVol, const G4int repNo, const G4VTouchable *parentTouch=nullptr)=0
virtual G4bool IsNested() const
virtual G4bool IsReplicated() const =0
G4LogicalVolume * GetLogicalVolume() const
virtual G4int GetMultiplicity() const
virtual void GetReplicationData(EAxis &axis, G4int &nReplicas, G4double &width, G4double &offset, G4bool &consuming) const =0
virtual G4int GetCopyNo() const =0
const G4String & GetName() const
virtual G4VPVParameterisation * GetParameterisation() const =0
G4ThreeVector GetObjectTranslation() const
virtual G4bool IsParameterised() const =0
virtual void BeginModeling()
G4VModel * GetModel() const
G4Scene * GetScene() const
G4Transform3D fObjectTransformation
virtual void EndPrimitives()
virtual void EndModeling()
G4VSceneHandler(G4VGraphicsSystem &system, G4int id, const G4String &name="")
const G4String & GetName() const
const G4VisAttributes * fpVisAttribs
virtual void BeginPrimitives(const G4Transform3D &objectTransformation=G4Transform3D())
virtual void AddSolid(const G4Box &)
virtual void AddCompound(const G4VTrajectory &)
G4ThreeVector GetTranslation() const
G4ThreeVector GetSize() const
void GetNumberOfSegments(G4int nSegment[3])
G4RotationMatrix GetRotationMatrix() const
virtual G4Polyhedron * CreatePolyhedron() const
virtual G4GeometryType GetEntityType() const =0
virtual const G4ThreeVector GetPosition() const =0
virtual G4VTrajectoryPoint * GetPoint(G4int i) const =0
virtual G4int GetPointEntries() const =0
virtual G4String GetParticleName() const =0
virtual G4int GetTrackID() const =0
virtual G4ThreeVector GetInitialMomentum() const =0
virtual G4double GetCharge() const =0
virtual void DrawTrajectory() const
const G4VisAttributes * GetApplicableVisAttributes(const G4VisAttributes *) const
const G4Color & GetColor() const
static Verbosity GetVerbosity()
const G4VisAttributes * GetVisAttributes() const
G4Point3D GetVertex(G4int index) const
HepPolyhedron & Transform(const G4Transform3D &t)
G4int GetNoFacets() const
G4bool GetNextVertexIndex(G4int &index, G4int &edgeFlag) const
G4int GetNoVertices() const
G4bool GetNextEdge(G4Point3D &p1, G4Point3D &p2, G4int &edgeFlag) const
const char * name(G4int ptype)