source: trunk/source/visualization/modeling/src/G4TrajectoryDrawByParticleID.cc @ 1315

Last change on this file since 1315 was 1315, checked in by garnier, 14 years ago

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File size: 4.3 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// $Id: G4TrajectoryDrawByParticleID.cc,v 1.11 2010/06/01 21:17:41 allison Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
28//
29// Jane Tinslay, John Allison, Joseph Perl November 2005
30
31#include "G4TrajectoryDrawByParticleID.hh"
32#include "G4TrajectoryDrawerUtils.hh"
33#include "G4VisTrajContext.hh"
34#include "G4VTrajectory.hh"
35#include <sstream>
36
37G4TrajectoryDrawByParticleID::G4TrajectoryDrawByParticleID(const G4String& name, G4VisTrajContext* context)
38  :G4VTrajectoryModel(name, context)
39  ,fDefault(G4Colour::Grey())
40{
41  Set("gamma", "green");
42  Set("e-", "red");
43  Set("e+", "blue");
44  Set("pi+", "magenta");
45  Set("pi-", "magenta");
46  Set("proton", "cyan");
47  Set("neutron", "yellow");
48}
49
50G4TrajectoryDrawByParticleID::~G4TrajectoryDrawByParticleID() {}
51
52void
53G4TrajectoryDrawByParticleID::Draw(const G4VTrajectory& object,
54                                   const G4int&,
55                                   const G4bool& visible) const
56{
57  Draw(object, visible);
58}
59
60void
61G4TrajectoryDrawByParticleID::Draw(const G4VTrajectory& traj, const G4bool& visible) const
62{
63  G4Colour colour(fDefault);
64  G4String particle = traj.GetParticleName();
65
66  fMap.GetColour(particle, colour);
67
68  G4VisTrajContext myContext(GetContext());
69 
70  myContext.SetLineColour(colour);
71  myContext.SetVisible(visible);
72 
73  if (GetVerbose()) {
74    G4cout<<"G4TrajectoryDrawByParticleID drawer named "<<Name();
75    G4cout<<", drawing trajectory with particle type, "<<particle<<G4endl;
76    G4cout<<", with configuration:"<<G4endl;
77    myContext.Print(G4cout);
78  }
79
80  G4TrajectoryDrawerUtils::DrawLineAndPoints(traj, myContext);
81}
82
83void
84G4TrajectoryDrawByParticleID::SetDefault(const G4String& colour)
85{
86  G4Colour myColour(G4Colour::White());     
87
88  // Will not modify myColour if colour key does not exist 
89  if (!G4Colour::GetColour(colour, myColour)) {
90    std::ostringstream o;
91    o << "G4Colour with key "<<colour<<" does not exist ";
92    G4Exception
93      ("G4TrajectoryDrawByParticleID::SetDefault(const G4String& colour)",
94       "NonExistentColour", JustWarning, o.str().c_str());
95  }
96
97  SetDefault(myColour);
98}
99
100void
101G4TrajectoryDrawByParticleID::SetDefault(const G4Colour& colour)
102{
103  fDefault = colour;
104}
105
106void
107G4TrajectoryDrawByParticleID::Set(const G4String& particle, const G4String& colour)
108{
109  fMap.Set(particle, colour);
110}
111
112void
113G4TrajectoryDrawByParticleID::Set(const G4String& particle, const G4Colour& colour)
114{
115  fMap[particle] = colour;
116}
117
118void
119G4TrajectoryDrawByParticleID::Print(std::ostream& ostr) const
120{
121  ostr<<"G4TrajectoryDrawByParticleID model "<< Name() <<" colour scheme: "<<std::endl;
122 
123  ostr<<"Default colour: "<<fDefault<<G4endl;
124
125  fMap.Print(ostr);
126
127  ostr<<"Default configuration:"<<G4endl;
128  GetContext().Print(G4cout);
129}
Note: See TracBrowser for help on using the repository browser.