Files
geant4/source/visualization/modeling/src/G4TrajectoryDrawByCharge.cc
T
2016-06-09 14:36:02 +02:00

149 lines
5.4 KiB
C++

// ********************************************************************
// * DISCLAIMER *
// * *
// * The following disclaimer summarizes all the specific disclaimers *
// * of contributors to this software. The specific disclaimers,which *
// * govern, are listed with their locations in: *
// * http://cern.ch/geant4/license *
// * *
// * 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. *
// * *
// * This code implementation is the intellectual property of the *
// * GEANT4 collaboration. *
// * By copying, distributing or modifying the Program (or any work *
// * based on the Program) you indicate your acceptance of this *
// * statement, and all its terms. *
// ********************************************************************
//
// $Id: G4TrajectoryDrawByCharge.cc,v 1.3 2005/11/23 20:24:15 tinslay Exp $
// GEANT4 tag $Name: geant4-08-00 $
//
// Jane Tinslay, John Allison, Joseph Perl November 2005
#include "G4TrajectoryDrawByCharge.hh"
#include "G4Polyline.hh"
#include "G4Polymarker.hh"
#include "G4TrajectoryDrawerUtils.hh"
#include "G4VisAttributes.hh"
#include "G4VTrajectory.hh"
#include "G4VVisManager.hh"
#include <sstream>
G4TrajectoryDrawByCharge::G4TrajectoryDrawByCharge(const G4String& name)
:G4VTrajectoryModel(name)
{
// Default configuration
fMap[Positive] = G4Color::Blue();
fMap[Negative] = G4Colour::Red();
fMap[Neutral] = G4Colour::Green();
}
G4TrajectoryDrawByCharge::G4TrajectoryDrawByCharge(const G4String& name,
const G4Colour& positive,
const G4Colour& negative,
const G4Colour& neutral)
:G4VTrajectoryModel(name)
{
fMap[Positive] = positive;
fMap[Negative] = negative;
fMap[Neutral] = neutral;
}
G4TrajectoryDrawByCharge::~G4TrajectoryDrawByCharge() {}
void
G4TrajectoryDrawByCharge::Draw(const G4VTrajectory& traj, G4int i_mode) const
{
// If i_mode>=0, draws a trajectory as a polyline (default is blue for
// positive, red for negative, green for neutral) and, if i_mode!=0,
// adds markers - yellow circles for step points and magenta squares
// for auxiliary points, if any - whose screen size in pixels is
// given by std::abs(i_mode)/1000. E.g: i_mode = 5000 gives easily
// visible markers.
G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance();
if (0 == pVVisManager) return;
const G4double markerSize = std::abs(i_mode)/1000;
G4bool lineRequired (i_mode >= 0);
G4bool markersRequired (markerSize > 0.);
// Return if don't need to do anything
if (!lineRequired && !markersRequired) return;
// Get points to draw
G4Polyline trajectoryLine;
G4Polymarker stepPoints;
G4Polymarker auxiliaryPoints;
G4TrajectoryDrawerUtils::GetPoints(traj, trajectoryLine,
auxiliaryPoints, stepPoints);
if (lineRequired) {
G4Colour colour;
const G4double charge = traj.GetCharge();
if(charge>0.) colour = fMap.find(Positive)->second;
else if(charge<0.) colour = fMap.find(Negative)->second;
else colour = fMap.find(Neutral)->second;
G4VisAttributes trajectoryLineAttribs(colour);
trajectoryLine.SetVisAttributes(&trajectoryLineAttribs);
pVVisManager->Draw(trajectoryLine);
}
if (markersRequired) {
auxiliaryPoints.SetMarkerType(G4Polymarker::squares);
auxiliaryPoints.SetScreenSize(markerSize);
auxiliaryPoints.SetFillStyle(G4VMarker::filled);
G4VisAttributes auxiliaryPointsAttribs(G4Colour(0.,1.,1.)); // Magenta
auxiliaryPoints.SetVisAttributes(&auxiliaryPointsAttribs);
pVVisManager->Draw(auxiliaryPoints);
stepPoints.SetMarkerType(G4Polymarker::circles);
stepPoints.SetScreenSize(markerSize);
stepPoints.SetFillStyle(G4VMarker::filled);
G4VisAttributes stepPointsAttribs(G4Colour(1.,1.,0.)); // Yellow.
stepPoints.SetVisAttributes(&stepPointsAttribs);
pVVisManager->Draw(stepPoints);
}
}
void
G4TrajectoryDrawByCharge::Print(std::ostream& ostr) const
{
ostr<<"G4TrajectoryDrawByCharge model "<< Name() <<" colour scheme: "<<std::endl;
std::map<Charge, G4Colour>::const_iterator iter = fMap.begin();
while (iter != fMap.end()) {
ostr<< iter->first <<" : "<< iter->second <<G4endl;
iter++;
}
}
void
G4TrajectoryDrawByCharge::Set(Charge charge, const G4String& colour)
{
G4Colour myColour(G4Colour::White());
// Will not modify myColour if colour key does not exist
if (!G4Colour::GetColour(colour, myColour)) {
std::ostringstream o;
o << "G4Colour with key "<<colour<<" does not exist ";
G4Exception
("G4TrajectoryDrawByCharge::Set(Charge charge, const G4String& colour)",
"NonExistentColour", JustWarning, o.str().c_str());
}
Set(charge, myColour);
}
void
G4TrajectoryDrawByCharge::Set(Charge charge, const G4Colour& colour)
{
fMap[charge] = colour;
}