Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4LocatorChangeRecord.hh
Go to the documentation of this file.
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// G4LocatorChangeRecord
27//
28// Class description:
29//
30// Record the changes in an endpoint of a locator.
31// Its key use is in playing these back in case of a problem.
32
33// Author: John Apostolakis (CERN), 27 August 2019
34// --------------------------------------------------------------------
35#ifndef G4LOCATOR_CHANGE_RECORD_HH
36#define G4LOCATOR_CHANGE_RECORD_HH 1
37
38#include <vector>
39#include "G4FieldTrack.hh"
40
41/**
42 * @brief G4LocatorChangeRecord records the changes in an endpoint of a locator.
43 * Its key use is in playing these back in case of a problem.
44 */
45
47{
48 public:
49
55
56 /**
57 * Constructor.
58 */
60 G4int iter,
61 unsigned int count,
62 const G4FieldTrack& fieldTrack );
63
64 /**
65 * Default copy and move constructors.
66 */
69
70 // No set methods -> create a new record for each entry (more reliable)
71
72 /**
73 * Accessors.
74 */
75 inline EChangeLocation GetLocation() const { return fCodeLocation; }
76 inline unsigned int GetCount() const { return fEventCount; }
77 inline G4int GetIteration() const { return fIteration; }
78 inline G4double GetLength() const { return fFieldTrack.GetCurveLength(); }
79
80 /**
81 * Streaming operators, using StreamInfo().
82 */
83 friend std::ostream& operator<< ( std::ostream& os,
84 const G4LocatorChangeRecord& r );
85 friend std::ostream& operator<< ( std::ostream& os,
86 const std::vector<G4LocatorChangeRecord> & vecR );
87
88 /**
89 * Streams object contents to an output stream.
90 */
91 std::ostream& StreamInfo(std::ostream& os) const;
92
93 static std::ostream& ReportVector ( std::ostream& os,
94 const std::string & nameOfRecord,
95 const std::vector<G4LocatorChangeRecord> & lcr );
96
97 static std::ostream& ReportEndChanges ( std::ostream& os,
98 const std::vector<G4LocatorChangeRecord> & startA,
99 const std::vector<G4LocatorChangeRecord> & endB );
100
101 static const char* GetNameChangeLocation( EChangeLocation );
102
103 private:
104
105 static const char* fNameChangeLocation[];
106 EChangeLocation fCodeLocation = kInvalidCL;
107 G4int fIteration = -1;
108 unsigned int fEventCount = 0;
109 G4FieldTrack fFieldTrack;
110};
111
112#endif
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
G4FieldTrack defines a data structure bringing together a magnetic track's state (position,...
G4LocatorChangeRecord records the changes in an endpoint of a locator. Its key use is in playing thes...
G4LocatorChangeRecord(EChangeLocation codeLocation, G4int iter, unsigned int count, const G4FieldTrack &fieldTrack)
friend std::ostream & operator<<(std::ostream &os, const G4LocatorChangeRecord &r)
static const char * GetNameChangeLocation(EChangeLocation)
static std::ostream & ReportEndChanges(std::ostream &os, const std::vector< G4LocatorChangeRecord > &startA, const std::vector< G4LocatorChangeRecord > &endB)
EChangeLocation GetLocation() const
std::ostream & StreamInfo(std::ostream &os) const
G4LocatorChangeRecord(G4LocatorChangeRecord &&)=default
static std::ostream & ReportVector(std::ostream &os, const std::string &nameOfRecord, const std::vector< G4LocatorChangeRecord > &lcr)
unsigned int GetCount() const
G4LocatorChangeRecord(const G4LocatorChangeRecord &)=default