Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LXeTrackingAction.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: LXeTrackingAction.cc 68752 2013-04-05 10:23:47Z gcosmo $
27 //
28 /// \file optical/LXe/src/LXeTrackingAction.cc
29 /// \brief Implementation of the LXeTrackingAction class
30 //
31 //
32 #include "LXeTrajectory.hh"
33 #include "LXeTrackingAction.hh"
36 #include "LXeRecorderBase.hh"
37 
38 #include "G4TrackingManager.hh"
39 #include "G4Track.hh"
40 #include "G4ParticleTypes.hh"
41 
42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43 
45  : fRecorder(r) {}
46 
47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48 
50 {
51  //Let this be up to the user via vis.mac
52  // fpTrackingManager->SetStoreTrajectory(true);
53 
54  //Use custom trajectory class
56 
57  //This user track information is only relevant to the photons
59 
60  /* const G4VProcess* creator = aTrack->GetCreatorProcess();
61  if(creator)
62  G4cout<<creator->GetProcessName()<<G4endl;
63  */
64 }
65 
66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
67 
71  trackInformation=(LXeUserTrackInformation*)aTrack->GetUserInformation();
72 
73  //Lets choose to draw only the photons that hit the sphere and a pmt
75 
76  const G4VProcess* creator=aTrack->GetCreatorProcess();
77  if(creator && creator->GetProcessName()=="OpWLS"){
78  trajectory->WLS();
79  trajectory->SetDrawTrajectory(true);
80  }
81 
83  if((trackInformation->GetTrackStatus()&hitPMT)&&
84  (trackInformation->GetTrackStatus()&hitSphere)){
85  trajectory->SetDrawTrajectory(true);
86  }
87  }
88  else{
89  if(trackInformation->GetTrackStatus()&hitPMT)
90  trajectory->SetDrawTrajectory(true);
91  }
92  }
93  else //draw all other trajectories
94  trajectory->SetDrawTrajectory(true);
95 
96  if(trackInformation->GetForceDrawTrajectory())
97  trajectory->SetDrawTrajectory(true);
98 
99  if(fRecorder)fRecorder->RecordTrack(aTrack);
100 }
G4ParticleDefinition * GetDefinition() const
G4TrackingManager * fpTrackingManager
G4VTrajectory * GimmeTrajectory() const
Definition of the LXeRecorderBase class.
virtual void RecordTrack(const G4Track *)
Definition of the LXeTrackingAction class.
Definition of the LXeDetectorConstruction class.
void SetUserTrackInformation(G4VUserTrackInformation *aValue)
G4VUserTrackInformation * GetUserInformation() const
const G4VProcess * GetCreatorProcess() const
Definition of the LXeTrajectory class.
Definition of the LXeUserTrackInformation class.
const G4String & GetProcessName() const
Definition: G4VProcess.hh:408
virtual void PreUserTrackingAction(const G4Track *)
void SetTrajectory(G4VTrajectory *aTrajectory)
static G4OpticalPhoton * OpticalPhotonDefinition()
LXeTrackingAction(LXeRecorderBase *)
void SetDrawTrajectory(G4bool b)
virtual void PostUserTrackingAction(const G4Track *)