553{
555
557
558
559
560
561 G4VScoringMesh* mesh = fSMan->GetCurrentMesh();
562 if(mesh == nullptr)
563 {
564 ed << "ERROR : No mesh is currently open. Open/create a mesh first. "
565 "Command ignored.";
567 return;
568 }
569
571
574
575
576 if(command == qTouchCmd)
577 {
579 }
580 else if(command == qGetUnitCmd)
581 {
583 }
584 else if(command == qSetUnitCmd)
585 {
587 }
588 else if(command == qCellChgCmd)
589 {
591 {
592 G4PSCellCharge* ps = nullptr;
593 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
594 {
596 }
597 else
598 {
599 ps = new G4PSCellCharge3D(token[0]);
600 }
603 }
604 }
605 else if(command == qCellFluxCmd)
606 {
608 {
609 G4PSCellFlux* ps = nullptr;
610 if(shape == MeshShape::box)
611 {
612 ps = new G4PSCellFlux3D(token[0]);
613 }
614 else if(shape == MeshShape::cylinder)
615 {
616 auto pps =
617 new G4PSCellFluxForCylinder3D(token[0]);
621 pps->SetNumberOfSegments(nSeg);
622 ps = pps;
623 }
624 else if(shape == MeshShape::realWorldLogVol)
625 {
626 ed << "Cell flux for real world volume is not yet supported. Command "
627 "ignored.";
629 return;
630 }
631 else if(shape == MeshShape::probe)
632 {
633 ps = new G4PSCellFlux(token[0]);
634 }
637 }
638 }
639 else if(command == qPassCellFluxCmd)
640 {
642 {
643 G4PSPassageCellFlux* ps = nullptr;
644 if(shape == MeshShape::box)
645 {
646 ps = new G4PSPassageCellFlux3D(token[0]);
647 }
648 else if(shape == MeshShape::cylinder)
649 {
650 auto pps =
651 new G4PSPassageCellFluxForCylinder3D(token[0]);
655 pps->SetNumberOfSegments(nSeg);
656 ps = pps;
657 }
658 else if(shape == MeshShape::realWorldLogVol)
659 {
660 ed << "Passing cell flux for real world volume is not yet supported. "
661 "Command ignored.";
663 return;
664 }
665 else if(shape == MeshShape::probe)
666 {
667 ps = new G4PSPassageCellFlux(token[0]);
668 }
671 }
672 }
673 else if(command == qeDepCmd)
674 {
676 {
677 G4PSEnergyDeposit* ps = nullptr;
678 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
679 {
681 }
682 else
683 {
684 ps = new G4PSEnergyDeposit3D(token[0]);
685 }
688 }
689 }
690 else if(command == qdoseDepCmd)
691 {
693 {
694 G4PSDoseDeposit* ps = nullptr;
695 if(shape == MeshShape::box)
696 {
697 ps = new G4PSDoseDeposit3D(token[0]);
698 }
699 else if(shape == MeshShape::cylinder)
700 {
701 auto pps =
702 new G4PSDoseDepositForCylinder3D(token[0]);
703 pps->SetUnit(token[1]);
707 pps->SetNumberOfSegments(nSeg);
708 ps = pps;
709 }
710 else if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
711 {
713 }
716 }
717 }
718 else if(command == qnOfStepCmd)
719 {
721 {
722 G4PSNofStep* ps = nullptr;
723 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
724 {
726 }
727 else
728 {
729 ps = new G4PSNofStep3D(token[0]);
730 }
733 }
734 }
735 else if(command == qnOfSecondaryCmd)
736 {
738 {
739 G4PSNofSecondary* ps = nullptr;
740 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
741 {
743 }
744 else
745 {
746 ps = new G4PSNofSecondary3D(token[0]);
747 }
749 }
750 }
751 else if(command == qTrackLengthCmd)
752 {
754 {
755 G4PSTrackLength* ps = nullptr;
756 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
757 {
759 }
760 else
761 {
762 ps = new G4PSTrackLength3D(token[0]);
763 }
769 }
770 }
771 else if(command == qPassCellCurrCmd)
772 {
774 {
775 G4PSPassageCellCurrent* ps = nullptr;
776 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
777 {
779 }
780 else
781 {
782 ps = new G4PSPassageCellCurrent3D(token[0]);
783 }
786 }
787 }
788 else if(command == qPassTrackLengthCmd)
789 {
791 {
792 G4PSPassageTrackLength* ps = nullptr;
793 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
794 {
796 }
797 else
798 {
799 ps = new G4PSPassageTrackLength3D(token[0]);
800 }
804 }
805 }
806 else if(command == qFlatSurfCurrCmd)
807 {
809 {
810 G4PSFlatSurfaceCurrent* ps = nullptr;
811 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
812 {
813 ps =
new G4PSFlatSurfaceCurrent(token[0],
StoI(token[1]),
815 }
816 else
817 {
818 ps =
new G4PSFlatSurfaceCurrent3D(token[0],
StoI(token[1]));
819 }
823 {
825 }
826 else
827 {
829 }
831 }
832 }
833 else if(command == qFlatSurfFluxCmd)
834 {
836 {
837 G4PSFlatSurfaceFlux* ps = nullptr;
838 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
839 {
840 ps =
new G4PSFlatSurfaceFlux(token[0],
StoI(token[1]),
842 }
843 else
844 {
845 ps =
new G4PSFlatSurfaceFlux3D(token[0],
StoI(token[1]));
846 }
850 {
852 }
853 else
854 {
856 }
858 }
859 }
860 else if(command == qVolFluxCmd)
861 {
863 {
864 G4PSVolumeFlux* ps = nullptr;
865 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
866 {
867 ps =
new G4PSVolumeFlux(token[0],
StoI(token[2]),
869 }
870 else
871 {
872 ps =
new G4PSVolumeFlux3D(token[0],
StoI(token[2]));
873 }
876 }
877 }
878 else if(command == qNofCollisionCmd)
879 {
881 {
882 G4PSNofCollision* ps = nullptr;
883 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
884 {
886 }
887 else
888 {
889 ps = new G4PSNofCollision3D(token[0]);
890 }
893 }
894 }
895 else if(command == qPopulationCmd)
896 {
898 {
899 G4PSPopulation* ps = nullptr;
900 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
901 {
903 }
904 else
905 {
906 ps = new G4PSPopulation3D(token[0]);
907 }
910 }
911 }
912 else if(command == qTrackCountCmd)
913 {
915 {
916 G4PSTrackCounter* ps = nullptr;
917 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
918 {
919 ps =
new G4PSTrackCounter(token[0],
StoI(token[1]),
921 }
922 else
923 {
924 ps =
new G4PSTrackCounter3D(token[0],
StoI(token[1]));
925 }
928 }
929 }
930 else if(command == qTerminationCmd)
931 {
933 {
934 G4PSTermination* ps = nullptr;
935 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
936 {
938 }
939 else
940 {
941 ps = new G4PSTermination3D(token[0]);
942 }
945 }
946 }
947 else if(command == qMinKinEAtGeneCmd)
948 {
950 {
951 G4PSMinKinEAtGeneration* ps = nullptr;
952 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
953 {
955 }
956 else
957 {
958 ps = new G4PSMinKinEAtGeneration3D(token[0]);
959 }
962 }
963 }
964 else if(command == qStepCheckerCmd)
965 {
967 {
968 G4PSStepChecker* ps = nullptr;
969 if(shape == MeshShape::realWorldLogVol || shape == MeshShape::probe)
970 {
972 }
973 else
974 {
975 ps = new G4PSStepChecker3D(token[0]);
976 }
978 }
979
980
981
982
983 }
984 else if(command == fchargedCmd)
985 {
987 {
988 mesh->
SetFilter(
new G4SDChargedFilter(token[0]));
989 }
990 else
991 {
992 ed << "WARNING[" << fchargedCmd->GetCommandPath()
993 << "] : Current quantity is not set. Set or touch a quantity first.";
995 }
996 }
997 else if(command == fneutralCmd)
998 {
1000 {
1001 mesh->
SetFilter(
new G4SDNeutralFilter(token[0]));
1002 }
1003 else
1004 {
1005 ed << "WARNING[" << fneutralCmd->GetCommandPath()
1006 << "] : Current quantity is not set. Set or touch a quantity first.";
1008 }
1009 }
1010 else if(command == fkinECmd)
1011 {
1013 {
1014 G4String&
name = token[0];
1019 new G4SDKineticEnergyFilter(name, elow * unitVal, ehigh * unitVal));
1020 }
1021 else
1022 {
1023 ed << "WARNING[" << fkinECmd->GetCommandPath()
1024 << "] : Current quantity is not set. Set or touch a quantity first.";
1026 }
1027 }
1028 else if(command == fparticleKinECmd)
1029 {
1031 {
1033 }
1034 else
1035 {
1036 ed << "WARNING[" << fparticleKinECmd->GetCommandPath()
1037 << "] : Current quantity is not set. Set or touch a quantity first.";
1039 }
1040 }
1041 else if(command == fparticleCmd)
1042 {
1044 {
1046 }
1047 else
1048 {
1049 ed << "WARNING[" << fparticleCmd->GetCommandPath()
1050 << "] : Current quantity is not set. Set or touch a quantity first.";
1052 }
1053 }
1054}
std::vector< G4String > G4TokenVec
G4GLOB_DLL std::ostream G4cout
virtual void SetUnit(const G4String &unit)
virtual void SetUnit(const G4String &unit)
virtual void SetUnit(const G4String &unit)
virtual void SetUnit(const G4String &unit)
void DivideByArea(G4bool flg=true)
void Weighted(G4bool flg=true)
virtual void SetUnit(const G4String &unit)
void Weighted(G4bool flg=true)
void DivideByArea(G4bool flg=true)
virtual void SetUnit(const G4String &unit)
virtual void SetUnit(const G4String &unit)
void Weighted(G4bool flg=true)
void SetBoundaryFlag(G4bool flg=true)
void Weighted(G4bool flg=true)
virtual void SetUnit(const G4String &unit)
virtual void SetUnit(const G4String &unit)
void Weighted(G4bool flg=true)
void Weighted(G4bool flg=true)
void Weighted(G4bool flg=true)
void Weighted(G4bool flg=true)
virtual void SetUnit(const G4String &unit)
void MultiplyKineticEnergy(G4bool flg=true)
void Weighted(G4bool flg=true)
void DivideByVelocity(G4bool flg=true)
void SetDivCos(G4bool val)
void FParticleWithEnergyCommand(G4VScoringMesh *mesh, G4TokenVec &token)
G4bool CheckMeshPS(G4VScoringMesh *mesh, const G4String &psname, G4UIcommand *command)
void FillTokenVec(const G4String &newValues, G4TokenVec &token)
void FParticleCommand(G4VScoringMesh *mesh, G4TokenVec &token)
G4bool StoB(const G4String &s)
G4int StoI(const G4String &s)
G4ThreeVector GetSize() const
MeshShape GetShape() const
G4double GetStartAngle() const
void GetNumberOfSegments(G4int nSegment[3])
G4int GetCopyNumberLevel() const
void SetCurrentPSUnit(const G4String &unit)
void SetCurrentPrimitiveScorer(const G4String &name)
void SetPrimitiveScorer(G4VPrimitiveScorer *ps)
G4String GetCurrentPSUnit()
G4double GetAngleSpan() const
G4bool IsCurrentPrimitiveScorerNull()