Skip to content
Snippets Groups Projects
Commit 01ecd430 authored by Liangliang Han's avatar Liangliang Han
Browse files

modify indent issue for DerivedG4PhysicalVolume.h

parent 02f2a75c
No related branches found
No related tags found
No related merge requests found
...@@ -33,20 +33,26 @@ public: ...@@ -33,20 +33,26 @@ public:
copyNo = CopyNo; copyNo = CopyNo;
} }
G4bool IsMany() const final {return true;} G4bool IsMany() const final { return true; }
G4bool IsReplicated() const final {return true;}
G4bool IsParameterised() const final {return true;} G4bool IsReplicated() const final { return true; }
G4VPVParameterisation* GetParameterisation() const final {return nullptr;}
G4bool IsParameterised() const final { return true; }
G4VPVParameterisation* GetParameterisation() const final { return nullptr; }
void GetReplicationData(EAxis& axis, G4int& nReplicas, G4double& width, G4double& offset, G4bool& consuming) const final void GetReplicationData(EAxis& axis, G4int& nReplicas, G4double& width, G4double& offset, G4bool& consuming) const final
{ {
axis = (EAxis)1; axis = (EAxis)1;
nReplicas = 0; nReplicas = 0;
width = 0.0; width = 0.0;
offset = 0.0; offset = 0.0;
consuming = true; consuming = true;
} }
G4bool IsRegularStructure() const final {return true;}
G4int GetRegularStructureId() const final {return 0;} G4bool IsRegularStructure() const final { return true; }
G4int GetRegularStructureId() const final { return 0; }
G4int copyNo; G4int copyNo;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment