Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // >> 26 // $Id: LXeTrackingAction.cc 68752 2013-04-05 10:23:47Z gcosmo $ 26 // 27 // 27 /// \file optical/LXe/src/LXeTrackingAction.cc 28 /// \file optical/LXe/src/LXeTrackingAction.cc 28 /// \brief Implementation of the LXeTrackingAc 29 /// \brief Implementation of the LXeTrackingAction class 29 // 30 // 30 // 31 // 31 #include "LXeTrackingAction.hh" << 32 << 33 #include "LXeDetectorConstruction.hh" << 34 #include "LXeTrajectory.hh" 32 #include "LXeTrajectory.hh" >> 33 #include "LXeTrackingAction.hh" 35 #include "LXeUserTrackInformation.hh" 34 #include "LXeUserTrackInformation.hh" >> 35 #include "LXeDetectorConstruction.hh" >> 36 #include "LXeRecorderBase.hh" 36 37 37 #include "G4OpticalPhoton.hh" << 38 #include "G4Track.hh" << 39 #include "G4TrackingManager.hh" 38 #include "G4TrackingManager.hh" >> 39 #include "G4Track.hh" >> 40 #include "G4ParticleTypes.hh" >> 41 >> 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 43 >> 44 LXeTrackingAction::LXeTrackingAction(LXeRecorderBase* r) >> 45 : fRecorder(r) {} 40 46 41 //....oooOO0OOooo........oooOO0OOooo........oo 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 42 48 43 void LXeTrackingAction::PreUserTrackingAction( 49 void LXeTrackingAction::PreUserTrackingAction(const G4Track* aTrack) 44 { 50 { 45 // Let this be up to the user via vis.mac << 51 //Let this be up to the user via vis.mac 46 // fpTrackingManager->SetStoreTrajectory(tr 52 // fpTrackingManager->SetStoreTrajectory(true); 47 53 48 // Use custom trajectory class << 54 //Use custom trajectory class 49 fpTrackingManager->SetTrajectory(new LXeTraj 55 fpTrackingManager->SetTrajectory(new LXeTrajectory(aTrack)); 50 56 51 // This user track information is only relev << 57 //This user track information is only relevant to the photons 52 fpTrackingManager->SetUserTrackInformation(n 58 fpTrackingManager->SetUserTrackInformation(new LXeUserTrackInformation); >> 59 >> 60 /* const G4VProcess* creator = aTrack->GetCreatorProcess(); >> 61 if(creator) >> 62 G4cout<<creator->GetProcessName()<<G4endl; >> 63 */ 53 } 64 } 54 65 55 //....oooOO0OOooo........oooOO0OOooo........oo 66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 56 67 57 void LXeTrackingAction::PostUserTrackingAction << 68 void LXeTrackingAction::PostUserTrackingAction(const G4Track* aTrack){ 58 { << 69 LXeTrajectory* trajectory=(LXeTrajectory*)fpTrackingManager->GimmeTrajectory(); 59 auto trajectory = (LXeTrajectory*)fpTracking << 70 LXeUserTrackInformation* 60 auto trackInformation = (LXeUserTrackInforma << 71 trackInformation=(LXeUserTrackInformation*)aTrack->GetUserInformation(); 61 72 62 // Let's choose to draw only the photons tha << 73 //Lets choose to draw only the photons that hit the sphere and a pmt 63 if (aTrack->GetDefinition() == G4OpticalPhot << 74 if(aTrack->GetDefinition()==G4OpticalPhoton::OpticalPhotonDefinition()){ 64 const G4VProcess* creator = aTrack->GetCre << 75 65 if (creator && creator->GetProcessName() = << 76 const G4VProcess* creator=aTrack->GetCreatorProcess(); >> 77 if(creator && creator->GetProcessName()=="OpWLS"){ 66 trajectory->WLS(); 78 trajectory->WLS(); 67 trajectory->SetDrawTrajectory(true); 79 trajectory->SetDrawTrajectory(true); 68 } 80 } 69 81 70 if (LXeDetectorConstruction::GetSphereOn() << 82 if(LXeDetectorConstruction::GetSphereOn()){ 71 if ((trackInformation->GetTrackStatus() << 83 if((trackInformation->GetTrackStatus()&hitPMT)&& 72 && (trackInformation->GetTrackStatus << 84 (trackInformation->GetTrackStatus()&hitSphere)){ 73 { << 74 trajectory->SetDrawTrajectory(true); 85 trajectory->SetDrawTrajectory(true); 75 } 86 } 76 } 87 } 77 else { << 88 else{ 78 if (trackInformation->GetTrackStatus() & << 89 if(trackInformation->GetTrackStatus()&hitPMT) >> 90 trajectory->SetDrawTrajectory(true); 79 } 91 } 80 } 92 } 81 // draw all other (not optical photon) traje << 93 else //draw all other trajectories 82 else << 94 trajectory->SetDrawTrajectory(true); >> 95 >> 96 if(trackInformation->GetForceDrawTrajectory()) 83 trajectory->SetDrawTrajectory(true); 97 trajectory->SetDrawTrajectory(true); 84 98 85 if (trackInformation->GetForceDrawTrajectory << 99 if(fRecorder)fRecorder->RecordTrack(aTrack); 86 } 100 } 87 101