source: trunk/examples/extended/optical/LXe/src/LXeTrajectory.cc@ 1036

Last change on this file since 1036 was 807, checked in by garnier, 17 years ago

update

File size: 5.6 KB
Line 
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#include "LXeTrajectory.hh"
27#include "G4TrajectoryPoint.hh"
28#include "G4Trajectory.hh"
29#include "G4ParticleTable.hh"
30#include "G4ParticleTypes.hh"
31#include "G4ThreeVector.hh"
32#include "G4Polyline.hh"
33#include "G4Circle.hh"
34#include "G4Colour.hh"
35#include "G4VisAttributes.hh"
36#include "G4VVisManager.hh"
37#include "G4Polymarker.hh"
38
39G4Allocator<LXeTrajectory> LXeTrajectoryAllocator;
40
41//_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
42LXeTrajectory::LXeTrajectory()
43 :G4Trajectory(),wls(false),drawit(false),forceNoDraw(false),forceDraw(false)
44{
45 particleDefinition=0;
46}
47
48//_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
49LXeTrajectory::LXeTrajectory(const G4Track* aTrack)
50 :G4Trajectory(aTrack),wls(false),drawit(false)
51{
52 particleDefinition=aTrack->GetDefinition();
53}
54
55//_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
56LXeTrajectory::LXeTrajectory(LXeTrajectory &right)
57 :G4Trajectory(right),wls(right.wls),drawit(right.drawit)
58{
59 particleDefinition=right.particleDefinition;
60}
61
62//_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
63LXeTrajectory::~LXeTrajectory()
64{
65
66}
67
68//_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
69void LXeTrajectory::DrawTrajectory(G4int i_mode) const{
70 //Taken from G4VTrajectory and modified to select colours based on particle
71 //type and to selectively eliminate drawing of certain trajectories.
72
73 if(!forceDraw && (!drawit || forceNoDraw))
74 return;
75
76 // If i_mode>=0, draws a trajectory as a polyline and, if i_mode!=0,
77 // adds markers - yellow circles for step points and magenta squares
78 // for auxiliary points, if any - whose screen size in pixels is
79 // given by std::abs(i_mode)/1000. E.g: i_mode = 5000 gives easily
80 // visible markers.
81
82 G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance();
83 if (!pVVisManager) return;
84
85 const G4double markerSize = std::abs(i_mode)/1000;
86 G4bool lineRequired (i_mode >= 0);
87 G4bool markersRequired (markerSize > 0.);
88
89 G4Polyline trajectoryLine;
90 G4Polymarker stepPoints;
91 G4Polymarker auxiliaryPoints;
92
93 for (G4int i = 0; i < GetPointEntries() ; i++) {
94 G4VTrajectoryPoint* aTrajectoryPoint = GetPoint(i);
95 const std::vector<G4ThreeVector>* auxiliaries
96 = aTrajectoryPoint->GetAuxiliaryPoints();
97 if (auxiliaries) {
98 for (size_t iAux = 0; iAux < auxiliaries->size(); ++iAux) {
99 const G4ThreeVector pos((*auxiliaries)[iAux]);
100 if (lineRequired) {
101 trajectoryLine.push_back(pos);
102 }
103 if (markersRequired) {
104 auxiliaryPoints.push_back(pos);
105 }
106 }
107 }
108 const G4ThreeVector pos(aTrajectoryPoint->GetPosition());
109 if (lineRequired) {
110 trajectoryLine.push_back(pos);
111 }
112 if (markersRequired) {
113 stepPoints.push_back(pos);
114 }
115 }
116
117 if (lineRequired) {
118 G4Colour colour;
119
120 if(particleDefinition==G4OpticalPhoton::OpticalPhotonDefinition()){
121 if(wls) //WLS photons are red
122 colour = G4Colour(1.,0.,0.);
123 else{ //Scintillation and Cerenkov photons are green
124 colour = G4Colour(0.,1.,0.);
125 }
126 }
127 else //All other particles are blue
128 colour = G4Colour(0.,0.,1.);
129
130 G4VisAttributes trajectoryLineAttribs(colour);
131 trajectoryLine.SetVisAttributes(&trajectoryLineAttribs);
132 pVVisManager->Draw(trajectoryLine);
133 }
134 if (markersRequired) {
135 auxiliaryPoints.SetMarkerType(G4Polymarker::squares);
136 auxiliaryPoints.SetScreenSize(markerSize);
137 auxiliaryPoints.SetFillStyle(G4VMarker::filled);
138 G4VisAttributes auxiliaryPointsAttribs(G4Colour(0.,1.,1.)); // Magenta
139 auxiliaryPoints.SetVisAttributes(&auxiliaryPointsAttribs);
140 pVVisManager->Draw(auxiliaryPoints);
141
142 stepPoints.SetMarkerType(G4Polymarker::circles);
143 stepPoints.SetScreenSize(markerSize);
144 stepPoints.SetFillStyle(G4VMarker::filled);
145 G4VisAttributes stepPointsAttribs(G4Colour(1.,1.,0.)); // Yellow.
146 stepPoints.SetVisAttributes(&stepPointsAttribs);
147 pVVisManager->Draw(stepPoints);
148 }
149}
150
151
152
153
154
Note: See TracBrowser for help on using the repository browser.