Files
geant4/source/tracking/include/G4ClonedRichTrajectory.hh
2024-12-06 11:11:40 +01:00

152 lines
5.7 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. *
// ********************************************************************
//
// G4ClonedRichTrajectory
//
// Class description:
//
// This class is identical to G4RichTrajectory class, but uses the
// singleton G4Allocator so that the master thread can safely
// delete the object instantiated by worker threads in sub-event
// parallel mode. This class object should be instantiated as
// a clone of G4RichTrajectory object.
//
// Makoto Asai (JLab) - Oct.2024
// --------------------------------------------------------------------
#ifndef G4ClonedRichTrajectory_HH
#define G4ClonedRichTrajectory_HH 1
#include "G4TouchableHandle.hh"
#include "G4VTrajectory.hh"
#include "G4ParticleDefinition.hh" // Include from 'particle+matter'
#include "G4Step.hh"
#include "G4Track.hh"
#include "G4ClonedRichTrajectoryPoint.hh" // Include from 'tracking'
#include "G4ios.hh" // Include from 'system'
#include "globals.hh" // Include from 'global'
#include "trkgdefs.hh"
#include <stdlib.h> // Include from 'system'
#include <vector>
class G4Polyline;
class G4RichTrajectory;
class G4ClonedRichTrajectory : public G4VTrajectory
{
using G4TrajectoryPointContainer = std::vector<G4VTrajectoryPoint*>;
public:
// Constructors/destructor
//
G4ClonedRichTrajectory() = default;
~G4ClonedRichTrajectory() override;
G4ClonedRichTrajectory(const G4RichTrajectory&);
G4ClonedRichTrajectory& operator=(const G4ClonedRichTrajectory&) = delete;
// Operators
//
G4bool operator==(const G4ClonedRichTrajectory& r) const { return (this == &r); }
inline void* operator new(size_t);
inline void operator delete(void*);
// Get/Set functions
inline G4int GetTrackID() const override { return fTrackID; }
inline G4int GetParentID() const override { return fParentID; }
inline G4String GetParticleName() const override { return ParticleName; }
inline G4double GetCharge() const override { return PDGCharge; }
inline G4int GetPDGEncoding() const override { return PDGEncoding; }
inline G4double GetInitialKineticEnergy() const { return initialKineticEnergy; }
inline G4ThreeVector GetInitialMomentum() const override { return initialMomentum; }
// Other (virtual) member functions
//
void ShowTrajectory(std::ostream& os = G4cout) const override;
void DrawTrajectory() const override;
void AppendStep(const G4Step* aStep) override;
void MergeTrajectory(G4VTrajectory* secondTrajectory) override;
inline G4int GetPointEntries() const override;
inline G4VTrajectoryPoint* GetPoint(G4int i) const override;
G4ParticleDefinition* GetParticleDefinition();
// Get methods for HepRep style attributes
//
const std::map<G4String, G4AttDef>* GetAttDefs() const override;
std::vector<G4AttValue>* CreateAttValues() const override;
private:
//G4TrajectoryPointContainer* positionRecord = nullptr;
G4int fTrackID = 0;
G4int fParentID = 0;
G4int PDGEncoding = 0;
G4double PDGCharge = 0.0;
G4String ParticleName = "dummy";
G4double initialKineticEnergy = 0.0;
G4ThreeVector initialMomentum;
// Extended information (only publicly accessible through AttValues)...
//
G4TrajectoryPointContainer* fpRichPointContainer = nullptr;
G4TouchableHandle fpInitialVolume;
G4TouchableHandle fpInitialNextVolume;
const G4VProcess* fpCreatorProcess = nullptr;
G4int fCreatorModelID = 0;
G4TouchableHandle fpFinalVolume;
G4TouchableHandle fpFinalNextVolume;
const G4VProcess* fpEndingProcess = nullptr;
G4double fFinalKineticEnergy = 0.0;
};
extern G4TRACKING_DLL G4Allocator<G4ClonedRichTrajectory>*& aClonedRichTrajectoryAllocator();
inline void* G4ClonedRichTrajectory::operator new(size_t)
{
if (aClonedRichTrajectoryAllocator() == nullptr) {
aClonedRichTrajectoryAllocator() = new G4Allocator<G4ClonedRichTrajectory>;
}
return (void*)aClonedRichTrajectoryAllocator()->MallocSingle();
}
inline void G4ClonedRichTrajectory::operator delete(void* aRichTrajectory)
{
aClonedRichTrajectoryAllocator()->FreeSingle((G4ClonedRichTrajectory*)aRichTrajectory);
}
inline G4int G4ClonedRichTrajectory::GetPointEntries() const
{
return G4int(fpRichPointContainer->size());
}
inline G4VTrajectoryPoint* G4ClonedRichTrajectory::GetPoint(G4int i) const
{
return (*fpRichPointContainer)[i];
}
#endif