Files
geant4/examples/extended/field/field04/src/F04TrajectoryPoint.cc
T
2018-12-07 15:15:39 +01:00

152 lines
5.2 KiB
C++

//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * 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. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
/// \file field/field04/src/F04TrajectoryPoint.cc
/// \brief Implementation of the F04TrajectoryPoint class
//
#include "F04TrajectoryPoint.hh"
#include "G4Step.hh"
#include "G4Track.hh"
#include "G4VProcess.hh"
#include "G4StepStatus.hh"
#include "G4AttDef.hh"
#include "G4AttValue.hh"
#include "G4AttDefStore.hh"
#include "G4UnitsTable.hh"
//#define G4ATTDEBUG
#ifdef G4ATTDEBUG
#include "G4AttCheck.hh"
#endif
G4ThreadLocal G4Allocator<F04TrajectoryPoint>* F04TrajPointAllocator=0;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
F04TrajectoryPoint::F04TrajectoryPoint()
: fTime(0.), fMomentum(0.,0.,0.),
fStepStatus(fUndefined), fVolumeName("") {}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
F04TrajectoryPoint::F04TrajectoryPoint(const G4Step* aStep)
: G4TrajectoryPoint(aStep->GetPostStepPoint()->GetPosition())
{
fTime = aStep->GetPostStepPoint()->GetGlobalTime();
fMomentum = aStep->GetPostStepPoint()->GetMomentum();
fStepStatus = aStep->GetPostStepPoint()->GetStepStatus();
if (aStep->GetPostStepPoint()->GetPhysicalVolume())
{
fVolumeName = aStep->GetPostStepPoint()->
GetPhysicalVolume()->GetName();
} else {
fVolumeName = " ";
}
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
F04TrajectoryPoint::F04TrajectoryPoint(const G4Track* aTrack)
: G4TrajectoryPoint(aTrack->GetPosition())
{
fTime = aTrack->GetGlobalTime();
fMomentum = aTrack->GetMomentum();
fStepStatus = fUndefined;
fVolumeName = aTrack->GetVolume()->GetName();
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
F04TrajectoryPoint::F04TrajectoryPoint(const F04TrajectoryPoint &right)
: G4TrajectoryPoint(right)
{
fTime = right.fTime;
fMomentum = right.fMomentum;
fStepStatus = right.fStepStatus;
fVolumeName = right.fVolumeName;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
F04TrajectoryPoint::~F04TrajectoryPoint() {}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
const std::map<G4String,G4AttDef>* F04TrajectoryPoint::GetAttDefs() const
{
G4bool isNew;
std::map<G4String,G4AttDef>* store
= G4AttDefStore::GetInstance("TrajectoryPoint",isNew);
if (isNew) {
G4String Pos("Pos");
(*store)[Pos] =
G4AttDef(Pos, "Position", "Physics","G4BestUnit","G4ThreeVector");
G4String Time("Time");
(*store)[Time] =
G4AttDef(Time, "Time", "Physics","G4BestUnit","G4double");
G4String Momentum("Momentum");
(*store)[Momentum] =
G4AttDef(Momentum, "Momentum", "Physics","G4BestUnit","G4ThreeVector");
G4String StepStatus("StepStatus");
(*store)[StepStatus] =
G4AttDef(StepStatus, "StepStatus", "Physics", "", "G4StepStatus");
G4String VolumeName("VolumeName");
(*store)[VolumeName] =
G4AttDef(VolumeName, "VolumeName", "Physics", "", "G4String");
}
return store;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
std::vector<G4AttValue>* F04TrajectoryPoint::CreateAttValues() const
{
std::vector<G4AttValue>* values = new std::vector<G4AttValue>;
values->push_back(G4AttValue("Time",G4BestUnit(fTime,"Time"),""));
values->push_back(G4AttValue("Momentum",G4BestUnit(fMomentum,"Momentum"),""));
values->push_back(G4AttValue("StepStatus",fStepStatus,""));
values->push_back(G4AttValue("VolumeName",fVolumeName,""));
#ifdef G4ATTDEBUG
G4cout << G4AttCheck(values,GetAttDefs());
#endif
return values;
}