Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VTwistSurface::CurrentStatus Class Reference

#include <G4VTwistSurface.hh>

Public Member Functions

 CurrentStatus ()
 
virtual ~CurrentStatus ()
 
G4ThreeVector GetXX (G4int i) const
 
G4double GetDistance (G4int i) const
 
G4int GetAreacode (G4int i) const
 
G4int GetNXX () const
 
G4bool IsDone () const
 
G4bool IsValid (G4int i) const
 
void SetCurrentStatus (G4int i, G4ThreeVector &xx, G4double &dist, G4int &areacode, G4bool &isvalid, G4int nxx, EValidate validate, const G4ThreeVector *p, const G4ThreeVector *v=nullptr)
 
void ResetfDone (EValidate validate, const G4ThreeVector *p, const G4ThreeVector *v=nullptr)
 
void DebugPrint () const
 

Detailed Description

Definition at line 229 of file G4VTwistSurface.hh.

Constructor & Destructor Documentation

◆ CurrentStatus()

G4VTwistSurface::CurrentStatus::CurrentStatus ( )

Definition at line 1160 of file G4VTwistSurface.cc.

1161{
1162 for (size_t i=0; i<G4VSURFACENXX; ++i)
1163 {
1164 fDistance[i] = kInfinity;
1165 fAreacode[i] = sOutside;
1166 fIsValid[i] = false;
1167 fXX[i].set(kInfinity, kInfinity, kInfinity);
1168 }
1169 fNXX = 0;
1170 fLastp.set(kInfinity, kInfinity, kInfinity);
1171 fLastv.set(kInfinity, kInfinity, kInfinity);
1172 fLastValidate = kUninitialized;
1173 fDone = false;
1174}
#define G4VSURFACENXX
static const G4int sOutside

◆ ~CurrentStatus()

G4VTwistSurface::CurrentStatus::~CurrentStatus ( )
virtualdefault

Member Function Documentation

◆ DebugPrint()

void G4VTwistSurface::CurrentStatus::DebugPrint ( ) const

Definition at line 1254 of file G4VTwistSurface.cc.

1255{
1256 G4cout << "CurrentStatus::Dist0,1= " << fDistance[0]
1257 << " " << fDistance[1] << " areacode = " << fAreacode[0]
1258 << " " << fAreacode[1] << G4endl;
1259}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ GetAreacode()

G4int G4VTwistSurface::CurrentStatus::GetAreacode ( G4int i) const
inline

Definition at line 238 of file G4VTwistSurface.hh.

238{ return fAreacode[i]; }

◆ GetDistance()

G4double G4VTwistSurface::CurrentStatus::GetDistance ( G4int i) const
inline

Definition at line 237 of file G4VTwistSurface.hh.

237{ return fDistance[i]; }

◆ GetNXX()

G4int G4VTwistSurface::CurrentStatus::GetNXX ( ) const
inline

Definition at line 239 of file G4VTwistSurface.hh.

239{ return fNXX; }

◆ GetXX()

G4ThreeVector G4VTwistSurface::CurrentStatus::GetXX ( G4int i) const
inline

Definition at line 236 of file G4VTwistSurface.hh.

236{ return fXX[i]; }

◆ IsDone()

G4bool G4VTwistSurface::CurrentStatus::IsDone ( ) const
inline

Definition at line 240 of file G4VTwistSurface.hh.

240{ return fDone; }

◆ IsValid()

G4bool G4VTwistSurface::CurrentStatus::IsValid ( G4int i) const
inline

Definition at line 241 of file G4VTwistSurface.hh.

241{ return fIsValid[i]; }

◆ ResetfDone()

void G4VTwistSurface::CurrentStatus::ResetfDone ( EValidate validate,
const G4ThreeVector * p,
const G4ThreeVector * v = nullptr )

Definition at line 1226 of file G4VTwistSurface.cc.

1230{
1231 if (validate == fLastValidate && p != nullptr && *p == fLastp)
1232 {
1233 if (v == nullptr || (*v == fLastv)) return;
1234 }
1235 G4ThreeVector xx(kInfinity, kInfinity, kInfinity);
1236 for (size_t i=0; i<G4VSURFACENXX; ++i)
1237 {
1238 fDistance[i] = kInfinity;
1239 fAreacode[i] = sOutside;
1240 fIsValid[i] = false;
1241 fXX[i] = xx; // bug in old code ( was fXX[i] = xx[i] )
1242 }
1243 fNXX = 0;
1244 fLastp.set(kInfinity, kInfinity, kInfinity);
1245 fLastv.set(kInfinity, kInfinity, kInfinity);
1246 fLastValidate = kUninitialized;
1247 fDone = false;
1248}
CLHEP::Hep3Vector G4ThreeVector

◆ SetCurrentStatus()

void G4VTwistSurface::CurrentStatus::SetCurrentStatus ( G4int i,
G4ThreeVector & xx,
G4double & dist,
G4int & areacode,
G4bool & isvalid,
G4int nxx,
EValidate validate,
const G4ThreeVector * p,
const G4ThreeVector * v = nullptr )

Definition at line 1186 of file G4VTwistSurface.cc.

1195{
1196 fDistance[i] = dist;
1197 fAreacode[i] = areacode;
1198 fIsValid[i] = isvalid;
1199 fXX[i] = xx;
1200 fNXX = nxx;
1201 fLastValidate = validate;
1202 if (p != nullptr)
1203 {
1204 fLastp = *p;
1205 }
1206 else
1207 {
1208 G4Exception("G4VTwistSurface::CurrentStatus::SetCurrentStatus()",
1209 "GeomSolids0003", FatalException, "SetCurrentStatus: p = 0!");
1210 }
1211 if (v != nullptr)
1212 {
1213 fLastv = *v;
1214 }
1215 else
1216 {
1217 fLastv.set(kInfinity, kInfinity, kInfinity);
1218 }
1219 fDone = true;
1220}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

The documentation for this class was generated from the following files: