// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4RayTrajectory.cc,v 1.15 2006/06/29 21:24:21 gunter Exp $ // GEANT4 tag $Name: $ // // // /////////////////// //G4RayTrajectory.cc /////////////////// #include "G4RayTrajectory.hh" #include "G4RayTrajectoryPoint.hh" #include "G4Step.hh" #include "G4VPhysicalVolume.hh" #include "G4VisManager.hh" #include "G4VisAttributes.hh" #include "G4Colour.hh" #include "G4TransportationManager.hh" #include "G4ios.hh" G4Allocator G4RayTrajectoryAllocator; G4RayTrajectory :: G4RayTrajectory() { positionRecord = new std::vector; } G4RayTrajectory :: G4RayTrajectory(G4RayTrajectory & right) : G4VTrajectory() { positionRecord = new std::vector; for(size_t i=0;isize();i++) { G4RayTrajectoryPoint* rightPoint = (G4RayTrajectoryPoint*) ((*(right.positionRecord))[i]); positionRecord->push_back(new G4RayTrajectoryPoint(*rightPoint)); } } G4RayTrajectory :: ~G4RayTrajectory() { //positionRecord->clearAndDestroy(); for(size_t i=0;isize();i++) { delete (*positionRecord)[i]; } positionRecord->clear(); delete positionRecord; } void G4RayTrajectory::AppendStep(const G4Step* aStep) { G4RayTrajectoryPoint* trajectoryPoint = new G4RayTrajectoryPoint(); trajectoryPoint->SetStepLength(aStep->GetStepLength()); G4Navigator* theNavigator = G4TransportationManager::GetTransportationManager()->GetNavigatorForTracking(); G4bool valid; G4ThreeVector theLocalNormal = theNavigator->GetLocalExitNormal(&valid); if(valid) { theLocalNormal = -theLocalNormal; } G4ThreeVector theGrobalNormal = theNavigator->GetLocalToGlobalTransform().TransformAxis(theLocalNormal); trajectoryPoint->SetSurfaceNormal(theGrobalNormal); G4VPhysicalVolume* prePhys = aStep->GetPreStepPoint()->GetPhysicalVolume(); const G4VisAttributes* preVisAtt = prePhys->GetLogicalVolume()->GetVisAttributes(); G4VisManager* visManager = G4VisManager::GetInstance(); if(visManager) { G4VViewer* viewer = visManager->GetCurrentViewer(); if (viewer) { preVisAtt = viewer->GetApplicableVisAttributes(preVisAtt); } } trajectoryPoint->SetPreStepAtt(preVisAtt); const G4VPhysicalVolume* postPhys = aStep->GetPostStepPoint()->GetPhysicalVolume(); const G4VisAttributes* postVisAtt = NULL; if(postPhys) { postVisAtt = postPhys->GetLogicalVolume()->GetVisAttributes(); if(visManager) { G4VViewer* viewer = visManager->GetCurrentViewer(); if (viewer) { postVisAtt = viewer->GetApplicableVisAttributes(postVisAtt); } } } trajectoryPoint->SetPostStepAtt(postVisAtt); positionRecord->push_back(trajectoryPoint); } void G4RayTrajectory::ShowTrajectory(std::ostream&) const { } void G4RayTrajectory::MergeTrajectory(G4VTrajectory* secondTrajectory) { if(!secondTrajectory) return; G4RayTrajectory* seco = (G4RayTrajectory*)secondTrajectory; G4int ent = seco->GetPointEntries(); for(G4int i=0;ipush_back((G4RayTrajectoryPoint*)seco->GetPoint(i)); } seco->positionRecord->clear(); }