98 lines
3.5 KiB
C++
98 lines
3.5 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G3Division.hh,v 1.7 2001/11/21 14:25:30 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-04-01 $
|
|
//
|
|
// ----------------------
|
|
// Class description:
|
|
//
|
|
// This class tranforms G3 divided volumes to G4 replicated volumes.
|
|
// UpdateVTE() method checks parameters of mother volume
|
|
// and in case they are complete the solid that will be replicated
|
|
// is created. In case of division with offset an additinal envelope
|
|
// VTE (G3VolTableEntry instance) is created.
|
|
// CreatePVReplica() methods creates the G4PVReplica instance.
|
|
|
|
// ----------------------
|
|
//
|
|
// by I.Hrivnacova, V.Berejnoi, 27 Sep 99
|
|
|
|
#ifndef G3DIVISION_HH
|
|
#define G3DIVISION_HH 1
|
|
|
|
#include "globals.hh"
|
|
#include "geomdefs.hh"
|
|
|
|
class G3VolTableEntry;
|
|
class G4VPhysicalVolume;
|
|
class G4LogicalVolume;
|
|
|
|
enum G3DivType { kDvn, kDvn2, kDvt, kDvt2 };
|
|
|
|
class G3Division
|
|
{
|
|
public: // with description
|
|
|
|
G3Division(G3DivType type, G3VolTableEntry* vte, G3VolTableEntry* mvte,
|
|
G4int nofDivision, G4int iaxis, G4int nmed, G4double c0,
|
|
G4double step);
|
|
G3Division(G3VolTableEntry* vte, G3VolTableEntry* mvte,
|
|
const G3Division& division);
|
|
virtual ~G3Division();
|
|
|
|
// methods
|
|
void UpdateVTE();
|
|
void CreatePVReplica();
|
|
|
|
private:
|
|
|
|
// methods
|
|
void SetRangeAndAxis();
|
|
void CreateSolid(G4String shape, G4double par[], G4int npar);
|
|
G3VolTableEntry* CreateEnvelope(G4String shape, G4double hi, G4double lo,
|
|
G4double par[], G4int npar);
|
|
G3VolTableEntry* Dvn ();
|
|
G3VolTableEntry* Dvn2();
|
|
G3VolTableEntry* Dvt ();
|
|
G3VolTableEntry* Dvt2();
|
|
void Exception(G4String where, G4String what);
|
|
|
|
// data members
|
|
G3DivType fType;
|
|
G3VolTableEntry* fVTE;
|
|
G3VolTableEntry* fMVTE;
|
|
G4int fNofDivisions; // ndiv/ndvmx
|
|
G4int fIAxis;
|
|
G4int fNmed;
|
|
G4double fC0;
|
|
G4double fStep;
|
|
G4double fLowRange;
|
|
G4double fHighRange;
|
|
G4double fWidth;
|
|
G4double fOffset;
|
|
EAxis fAxis;
|
|
};
|
|
|
|
#endif //G3_DIVISION_H
|