Issue in Transportation

I create a Volume Shape1(blue) in the Envelop (white,Box) and specify an e- .
I see the particle always in Shape1, but the print result display that the particle in Envelop.
What should I do?

G4WT1 > Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
G4WT1 >     0        0       20      100     1e-05        0        0         0      Shape1 initStep
G4WT1 >     1        0     19.7      105  2.29e-05    1e-05        5         5      Shape1 StepLimiter
G4WT1 >     2        0     19.1      110  2.56e-05 2.29e-05        5        10      Shape1 StepLimiter
G4WT1 >     3        0     18.3      115  2.89e-05 2.56e-05        5        15      Shape1 StepLimiter
G4WT1 >     4        0     17.5      120  3.26e-05 2.89e-05        5        20      Shape1 StepLimiter
G4WT1 >     5        0     16.5      125  3.71e-05 3.26e-05        5        25      Shape1 StepLimiter
G4WT1 >     6        0     15.6      130  4.19e-05 3.71e-05        5        30      Shape1 StepLimiter
G4WT1 >     7        0     14.6      135  4.77e-05 4.19e-05        5        35      Shape1 StepLimiter
G4WT1 >     8        0     13.6      139  5.53e-05 4.77e-05        5        40      Shape1 StepLimiter
G4WT1 >     9        0     12.6      144  6.38e-05 5.53e-05        5        45      Shape1 StepLimiter
G4WT1 >    10        0     11.6      149  7.39e-05 6.38e-05        5        50      Shape1 StepLimiter
G4WT1 >    11        0     10.7      154  8.65e-05 7.39e-05        5        55      Shape1 StepLimiter
G4WT1 >    12        0     9.74      159  0.000102 8.65e-05        5        60      Shape1 StepLimiter
G4WT1 >    13        0     8.85      164   0.00012 0.000102        5        65      Shape1 StepLimiter
G4WT1 >    14        0     7.99      169  0.000145  0.00012        5        70      Shape1 StepLimiter
G4WT1 >    15        0     7.99      169  0.000145        0        0        70    Envelope Transportation
1 Like

I set StepLimiter in Shape 1. You can see the yellow point in the red line that mean it working.
And you also can see the red line without yellow point which meaning the Particle isn’t in Shape1.
Actually it shuold be in.
Shape1 is showed.

    G4Ellipsoid* solidShape1_3 = new G4Ellipsoid("Shape1_3",shape1_sizexy/2,shape1_sizexy/2,shape1_sizez,0,144.5*mm);
    G4Tubs* solidShape1_4 = new G4Tubs("Shape1_4",0,160/2*mm,10*mm,0,2*CLHEP::pi);
    G4MultiUnion* solidShape1 = new G4MultiUnion("Shape1");
    G4RotationMatrix rotm  = G4RotationMatrix();
    G4ThreeVector position3 = G4ThreeVector(0*mm, 0*mm, 75*mm);
    G4ThreeVector position4 = G4ThreeVector(0*mm, 0*mm, (75+144.5+10)*mm);
    G4Transform3D tr3 = G4Transform3D(rotm,position3);
    G4Transform3D tr4 = G4Transform3D(rotm,position4);
    solidShape1->AddNode(*solidShape1_3,tr3);
    solidShape1->AddNode(*solidShape1_4,tr4);
    solidShape1->Voxelize();