60 , fStepLength(right.fStepLength)
61 , fpTrack(right.fpTrack)
62 , fpSteppingControlFlag(right.fpSteppingControlFlag)
63 , fFirstStepInVolume(right.fFirstStepInVolume)
64 , fLastStepInVolume(right.fLastStepInVolume)
65 , nSecondaryByLastStep(right.nSecondaryByLastStep)
66 , secondaryInCurrentStep(right.secondaryInCurrentStep)
67 , fpVectorOfAuxiliaryPointsPointer(right.fpVectorOfAuxiliaryPointsPointer)
69 if(right.fpPreStepPoint !=
nullptr)
71 fpPreStepPoint = new G4StepPoint(*(right.fpPreStepPoint));
75 fpPreStepPoint = new G4StepPoint();
77 if(right.fpPostStepPoint !=
nullptr)
79 fpPostStepPoint = new G4StepPoint(*(right.fpPostStepPoint));
83 fpPostStepPoint = new G4StepPoint();
86 if(right.fSecondary !=
nullptr)
88 fSecondary = new G4TrackVector(*(right.fSecondary));
92 fSecondary = new G4TrackVector();
96 secondaryInCurrentStep =
new std::vector<const G4Track*>;
106 fStepLength = right.fStepLength;
107 fpTrack = right.fpTrack;
108 fpSteppingControlFlag = right.fpSteppingControlFlag;
109 fFirstStepInVolume = right.fFirstStepInVolume;
110 fLastStepInVolume = right.fLastStepInVolume;
111 nSecondaryByLastStep = right.nSecondaryByLastStep;
112 secondaryInCurrentStep = right.secondaryInCurrentStep;
113 fpVectorOfAuxiliaryPointsPointer = right.fpVectorOfAuxiliaryPointsPointer;
115 delete fpPreStepPoint;
117 if(right.fpPreStepPoint !=
nullptr)
119 fpPreStepPoint =
new G4StepPoint(*(right.fpPreStepPoint));
126 delete fpPostStepPoint;
128 if(right.fpPostStepPoint !=
nullptr)
130 fpPostStepPoint =
new G4StepPoint(*(right.fpPostStepPoint));
137 if(fSecondary !=
nullptr)
142 if(right.fSecondary !=
nullptr)
152 if(secondaryInCurrentStep !=
nullptr)
154 secondaryInCurrentStep->clear();
155 delete secondaryInCurrentStep;
157 secondaryInCurrentStep =
new std::vector<const G4Track*>;