Import Geant4 1.0.0 source tree
This commit is contained in:
@@ -0,0 +1,105 @@
|
||||
# $Id: GNUmakefile,v 1.3 1999/05/01 21:42:04 lockman Exp $
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
ifndef G4TARGET
|
||||
G4TARGET = clGeometry
|
||||
endif
|
||||
|
||||
name = g3tog4_example
|
||||
|
||||
## following flag indicates that we will build a temporary library named
|
||||
## lib$(name).a containing .o files from source files in src/
|
||||
|
||||
G4EXLIB := true
|
||||
|
||||
## build a separate CFRONT template repository for the code in this example
|
||||
|
||||
G4EXEC_BUILD = true
|
||||
|
||||
ifndef G4INSTALL
|
||||
G4INSTALL = ../../..
|
||||
endif
|
||||
|
||||
include $(G4INSTALL)/config/architecture.gmk
|
||||
include $(G4INSTALL)/config/G4UI_USE.gmk
|
||||
include $(G4INSTALL)/config/G4VIS_USE.gmk
|
||||
include $(G4INSTALL)/config/interactivity.gmk
|
||||
|
||||
## Override some variables for binmake.gmk.
|
||||
|
||||
INCFLAGS := \
|
||||
-I$(G4BASE)/global/management/include \
|
||||
-I$(G4BASE)/global/HEPRandom/include \
|
||||
-I$(G4BASE)/global/HEPGeometry/include \
|
||||
-I$(G4BASE)/intercoms/include \
|
||||
-I$(G4BASE)/geometry/management/include \
|
||||
-I$(G4BASE)/geometry/volumes/include \
|
||||
-I$(G4BASE)/geometry/magneticfield/include \
|
||||
-I$(G4BASE)/geometry/solids/CSG/include \
|
||||
-I$(G4BASE)/geometry/solids/BREPS/include \
|
||||
-I$(G4BASE)/geometry/solids/STEP/include \
|
||||
-I$(G4BASE)/tracking/include \
|
||||
-I$(G4BASE)/track/include \
|
||||
-I$(G4BASE)/event/include \
|
||||
-I$(G4BASE)/materials/include \
|
||||
-I$(G4BASE)/particles/management/include \
|
||||
-I$(G4BASE)/particles/bosons/include \
|
||||
-I$(G4BASE)/particles/leptons/include \
|
||||
-I$(G4BASE)/particles/hadrons/mesons/include \
|
||||
-I$(G4BASE)/particles/hadrons/barions/include \
|
||||
-I$(G4BASE)/particles/hadrons/ions/include \
|
||||
-I$(G4BASE)/processes/management/include \
|
||||
-I$(G4BASE)/processes/decay/include \
|
||||
-I$(G4BASE)/processes/electromagnetic/standard/include \
|
||||
-I$(G4BASE)/processes/electromagnetic/muons/include \
|
||||
-I$(G4BASE)/processes/electromagnetic/utils/include \
|
||||
-I$(G4BASE)/processes/electromagnetic/xrays/include \
|
||||
-I$(G4BASE)/graphics_reps/include \
|
||||
-I$(G4BASE)/digits+hits/detector/include \
|
||||
-I$(G4BASE)/digits+hits/digits/include \
|
||||
-I$(G4BASE)/digits+hits/hits/include \
|
||||
-I$(G4BASE)/run/include \
|
||||
-I$(G4BASE)/g3tog4/include \
|
||||
-I$(G4BASE)/g3tog4/test/include
|
||||
|
||||
### LDLIBS must be specified since -lG3toG4 is not part of the standard
|
||||
### libraries
|
||||
|
||||
LDLIBS := -l$(name) $(VISLIBS) $(UILIBS) \
|
||||
-lG4run \
|
||||
-lG4event \
|
||||
-lG3toG4 \
|
||||
-lG4tracking \
|
||||
-lG4processes \
|
||||
-lG4particles \
|
||||
-lG4track \
|
||||
-lG4materials \
|
||||
-lG4digits+hits \
|
||||
-lG4geometry \
|
||||
-lG4graphics_reps \
|
||||
-lG4intercoms \
|
||||
-lG4global \
|
||||
$(INTYLIBS)
|
||||
|
||||
.PHONY: first lib bin test1
|
||||
|
||||
first: $(G4INSTALL)/lib/$(G4SYSTEM)/libG3toG4.a lib bin
|
||||
|
||||
$(G4INSTALL)/lib/$(G4SYSTEM)/libG3toG4.a : $(G4BASE)/g3tog4/src/*.cc
|
||||
cd $(G4BASE)/g3tog4; $(MAKE) lib
|
||||
|
||||
##############################################################################
|
||||
include $(G4INSTALL)/config/binmake.gmk
|
||||
|
||||
test1:
|
||||
echo LDLIBS: $(LDLIBS)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
Directory contains the code to build a detector geometry using call list
|
||||
mechanism and also provides visualization. The name of the executable is
|
||||
clGeometry.
|
||||
|
||||
To build this,
|
||||
|
||||
cd $G4BASE/g3tog4; gmake examples
|
||||
|
||||
or from this directory,
|
||||
|
||||
gmake
|
||||
|
||||
@@ -0,0 +1,163 @@
|
||||
// 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: clGeometry.cc,v 1.9 1999/12/05 17:50:22 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
|
||||
// controls whether drawing is to be Done or not
|
||||
|
||||
#include "g4std/fstream"
|
||||
#include <math.h>
|
||||
#include "G4ios.hh"
|
||||
|
||||
// package includes
|
||||
|
||||
#include "G3toG4DetectorConstruction.hh"
|
||||
#include "G3toG4RunAction.hh"
|
||||
#include "G3toG4PrimaryGeneratorAction.hh"
|
||||
#include "G3toG4PhysicsList.hh"
|
||||
#include "G3toG4EventAction.hh"
|
||||
#include "G4LogicalVolume.hh"
|
||||
#include "G3VolTable.hh"
|
||||
|
||||
// geant4 includes
|
||||
|
||||
#include "G4RunManager.hh"
|
||||
#include "G4UImanager.hh"
|
||||
#include "G4UIterminal.hh"
|
||||
|
||||
// visualization
|
||||
#ifdef G4VIS_USE
|
||||
#include "G3toG4VisManager.hh"
|
||||
#endif
|
||||
|
||||
G4int main(int argc, char** argv)
|
||||
{
|
||||
G4String inFile;
|
||||
G4String macroFile = "";
|
||||
|
||||
if (argc < 2) {
|
||||
G4cerr << "clGeometry: Correct syntax: clGeometry <call_list_file> [ <macro_file> ]"
|
||||
<< endl;
|
||||
G4cerr << "If only one argument is specified, interactive mode will be "
|
||||
<< "entered." << endl << "The second argument, if specified, is "
|
||||
<< "the name of the macro file (batch mode)." << endl;
|
||||
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
if (argc >= 2) {
|
||||
// Process the command line
|
||||
inFile = argv[1];
|
||||
ifstream in(inFile);
|
||||
if (!in) {
|
||||
G4cerr << "Cannot open input file \"" << inFile << "\"" << endl;
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
}
|
||||
if (argc >= 3) {
|
||||
macroFile = argv[2];
|
||||
ifstream mac(macroFile);
|
||||
if (!mac) {
|
||||
G4cout << "Cannot open macro file """ << macroFile << """" << endl;
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
if (argc >= 4) {
|
||||
G4cerr << "Too many command line arguments (" << argc <<")" << endl;
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
// Construct the default run manager
|
||||
G4RunManager* RunManager = new G4RunManager;
|
||||
|
||||
// set mandatory initialization classes
|
||||
RunManager->SetUserInitialization(new G3toG4DetectorConstruction(inFile));
|
||||
|
||||
G3toG4PhysicsList* thePhysicsList = new G3toG4PhysicsList;
|
||||
|
||||
// set verbosity of PhysicsList
|
||||
thePhysicsList->SetVerboseLevel(2);
|
||||
RunManager->SetUserInitialization(thePhysicsList);
|
||||
|
||||
//----------------
|
||||
// Visualization:
|
||||
//----------------
|
||||
|
||||
#ifdef G4VIS_USE
|
||||
G4VisManager* VisManager = new G3toG4VisManager;
|
||||
VisManager -> Initialize();
|
||||
#endif
|
||||
|
||||
// set user action classes
|
||||
|
||||
RunManager->SetUserAction(new G3toG4RunAction);
|
||||
|
||||
G3toG4EventAction* theEventAction = new G3toG4EventAction;
|
||||
theEventAction->SetDrawFlag("all");
|
||||
RunManager->SetUserAction(theEventAction);
|
||||
|
||||
RunManager->SetUserAction(new G3toG4PrimaryGeneratorAction);
|
||||
|
||||
// the pointer to the User Interface manager
|
||||
G4UImanager* UI = G4UImanager::GetUIpointer();
|
||||
|
||||
// set some additional defaults and initial actions
|
||||
|
||||
UI->ApplyCommand("/control/verbose 1");
|
||||
UI->ApplyCommand("/run/verbose 1");
|
||||
UI->ApplyCommand("/tracking/verbose 1");
|
||||
UI->ApplyCommand("/tracking/storeTrajectory 1");
|
||||
UI->ApplyCommand("/run/initialize");
|
||||
|
||||
G4bool batch_mode = macroFile != "";
|
||||
|
||||
if(!batch_mode) {
|
||||
G4UIsession * session = new G4UIterminal;
|
||||
if (session != 0) {
|
||||
session->SessionStart();
|
||||
delete session;
|
||||
// G4cout << "deleted G4UITerminal..." << endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Batch mode
|
||||
G4String command = "/control/execute ";
|
||||
UI->ApplyCommand(command+macroFile);
|
||||
}
|
||||
#ifdef G4VIS_USE
|
||||
if (VisManager !=0) delete VisManager;
|
||||
#endif
|
||||
delete RunManager;
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
#
|
||||
# Initialize GEANT4
|
||||
#
|
||||
/gun/position 0. -1.5 0. mm
|
||||
/gun/direction 0. 1. 0.
|
||||
/gun/energy 1 GeV
|
||||
/gun/particle mu-
|
||||
/run/beamOn 1
|
||||
/gun/particle mu+
|
||||
/run/beamOn 1
|
||||
/gun/particle e-
|
||||
/run/beamOn 1
|
||||
/gun/particle e+
|
||||
/run/beamOn 1
|
||||
#
|
||||
/gun/position 0. 1.5 0. mm
|
||||
/gun/direction 1. 0. 0.
|
||||
/gun/energy 1 GeV
|
||||
/gun/particle mu-
|
||||
/run/beamOn 1
|
||||
/gun/particle mu+
|
||||
/run/beamOn 1
|
||||
/gun/particle e-
|
||||
/run/beamOn 1
|
||||
/gun/particle e+
|
||||
/run/beamOn 1
|
||||
#
|
||||
# Termination
|
||||
#
|
||||
@@ -0,0 +1,111 @@
|
||||
// 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: cltog4.cc,v 1.6 1999/12/05 17:50:22 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
#include "G4ios.hh"
|
||||
#include "g4std/fstream"
|
||||
#include <math.h>
|
||||
|
||||
// example header file includes
|
||||
|
||||
#include "G3toG4DetectorConstruction.hh"
|
||||
#include "G3toG4RunAction.hh"
|
||||
#include "G3toG4PrimaryGeneratorAction.hh"
|
||||
#include "G3toG4PhysicsList.hh"
|
||||
#include "G4LogicalVolume.hh"
|
||||
#include "G3VolTable.hh"
|
||||
|
||||
// geant4 includes
|
||||
|
||||
#include "G4RunManager.hh"
|
||||
#include "G4UImanager.hh"
|
||||
#include "G4UIterminal.hh"
|
||||
|
||||
G4int main(int argc, char** argv)
|
||||
{
|
||||
G4String inFile;
|
||||
G4String macroFile = "";
|
||||
|
||||
if (argc < 2) {
|
||||
G4cout << "Correct syntax:" << argv[0] << " <call_list_file> [ <macro_file> ]"
|
||||
<< endl;
|
||||
G4cout << "If only one argument is specified, macro file " << macroFile
|
||||
<< "will be used." << endl
|
||||
<< "The second argument is used to override the default macro file"
|
||||
<< " name." << endl;
|
||||
|
||||
return 1;
|
||||
}
|
||||
if (argc >= 2) {
|
||||
// Process the command line
|
||||
inFile = argv[1];
|
||||
ifstream in(inFile);
|
||||
if (!in) {
|
||||
G4cout << "Cannot open input file """ << inFile << """" << endl;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (argc >= 3) {
|
||||
macroFile = argv[2];
|
||||
ifstream mac(macroFile);
|
||||
if (!mac) {
|
||||
G4cout << "Cannot open macro file """ << macroFile << """" << endl;
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
if (argc >= 4) {
|
||||
G4cout << "Too many command line arguments (" << argc <<")" << endl;
|
||||
return 1;
|
||||
}
|
||||
// run manager
|
||||
G4RunManager * RunManager = new G4RunManager;
|
||||
// user initialization classes
|
||||
RunManager->SetUserInitialization(new G3toG4DetectorConstruction(inFile));
|
||||
RunManager->SetUserInitialization(new G3toG4PhysicsList);
|
||||
|
||||
// user action classes
|
||||
RunManager->SetUserAction(new G3toG4RunAction);
|
||||
RunManager->SetUserAction(new G3toG4PrimaryGeneratorAction);
|
||||
|
||||
G4UImanager * UI = G4UImanager::GetUIpointer();
|
||||
// set some additional defaults and initial actions
|
||||
|
||||
UI->ApplyCommand("/control/verbose 1");
|
||||
UI->ApplyCommand("/run/verbose 1");
|
||||
UI->ApplyCommand("/tracking/verbose 1");
|
||||
UI->ApplyCommand("/tracking/storeTrajectory 1");
|
||||
UI->ApplyCommand("/run/initialize");
|
||||
|
||||
G4bool batch_mode = macroFile != "";
|
||||
|
||||
if(!batch_mode) {
|
||||
G4UIsession * session = new G4UIterminal;
|
||||
if (session != 0) {
|
||||
session->SessionStart();
|
||||
delete session;
|
||||
// G4cout << "deleted G4UITerminal..." << endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Batch mode
|
||||
G4String command = "/control/execute ";
|
||||
UI->ApplyCommand(command+macroFile);
|
||||
}
|
||||
delete RunManager;
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/control/verbose 1
|
||||
/tracking/verbose 1
|
||||
#
|
||||
# Initialize GEANT4
|
||||
#
|
||||
/run/initialize
|
||||
#
|
||||
/gun/position 0. -1.5 0.
|
||||
/gun/direction 0. 1. 0.
|
||||
/gun/energy 1 GeV
|
||||
/gun/particle chargedgeantino
|
||||
/run/beamOn 10
|
||||
#
|
||||
# Termination
|
||||
#
|
||||
@@ -0,0 +1,45 @@
|
||||
// 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: G3toG4DetectorConstruction.hh,v 1.3 1999/12/05 17:50:25 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
#ifndef G3toG4DetectorConstruction_h
|
||||
#define G3toG4DetectorConstruction_h 1
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// G3toG4DetectorConstruction. Most the work is Done in
|
||||
// G4BuildGeom, which returns a G4LogicalVolume*, a pointer to the
|
||||
// top-level logiical volume in the detector defined by the call List file
|
||||
// inFile
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
#include "G4VUserDetectorConstruction.hh"
|
||||
#include "G4PVPlacement.hh"
|
||||
#include "G4LogicalVolume.hh"
|
||||
#include "G3G4Interface.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
class G3toG4DetectorConstruction : public G4VUserDetectorConstruction
|
||||
{
|
||||
public:
|
||||
G3toG4DetectorConstruction(G4String inFile="svt.dat");
|
||||
|
||||
~G3toG4DetectorConstruction();
|
||||
|
||||
G4VPhysicalVolume* Construct();
|
||||
G4LogicalVolume* SimpleConstruct();
|
||||
|
||||
private:
|
||||
G4String _inFile;
|
||||
G4VPhysicalVolume* _pv;
|
||||
G4LogicalVolume* _lv;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
// 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: G3toG4EventAction.hh,v 1.3 1999/12/05 17:50:25 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#ifndef G3toG4EventAction_h
|
||||
#define G3toG4EventAction_h 1
|
||||
|
||||
#include "G4UserEventAction.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
class G3toG4EventActionMessenger;
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
class G3toG4EventAction : public G4UserEventAction
|
||||
{
|
||||
public:
|
||||
G3toG4EventAction();
|
||||
~G3toG4EventAction();
|
||||
|
||||
public:
|
||||
void BeginOfEventAction(const G4Event* anEvent);
|
||||
void EndOfEventAction(const G4Event* anEvent);
|
||||
|
||||
void SetDrawFlag(G4String val) {drawFlag = val;};
|
||||
|
||||
private:
|
||||
G4String drawFlag; // control the drawing of event
|
||||
G3toG4EventActionMessenger* eventMessenger;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
// 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: G3toG4EventActionMessenger.hh,v 1.2 1999/12/05 17:50:25 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#ifndef G3toG4EventActionMessenger_h
|
||||
#define G3toG4EventActionMessenger_h 1
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4UImessenger.hh"
|
||||
|
||||
class G3toG4EventAction;
|
||||
class G4UIcmdWithAString;
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
class G3toG4EventActionMessenger: public G4UImessenger
|
||||
{
|
||||
public:
|
||||
G3toG4EventActionMessenger(G3toG4EventAction*);
|
||||
~G3toG4EventActionMessenger();
|
||||
|
||||
void SetNewValue(G4UIcommand*, G4String);
|
||||
|
||||
private:
|
||||
G3toG4EventAction* eventAction;
|
||||
G4UIcmdWithAString* DrawCmd;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,68 @@
|
||||
// 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: G3toG4PhysicsList.hh,v 1.4 1999/12/05 17:50:25 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#ifndef G3toG4PhysicsList_h
|
||||
#define G3toG4PhysicsList_h 1
|
||||
|
||||
#include "G4VUserPhysicsList.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
class G3toG4PhysicsList: public G4VUserPhysicsList
|
||||
{
|
||||
public:
|
||||
G3toG4PhysicsList();
|
||||
~G3toG4PhysicsList();
|
||||
|
||||
protected:
|
||||
// Construct particle and physics
|
||||
virtual void ConstructParticle();
|
||||
virtual void ConstructProcess();
|
||||
|
||||
virtual void SetCuts();
|
||||
|
||||
public:
|
||||
// Set/Get cut values
|
||||
void SetCutForGamma(G4double);
|
||||
void SetCutForElectron(G4double);
|
||||
void SetCutForProton(G4double);
|
||||
G4double GetCutForGamma() const;
|
||||
G4double GetCutForElectron() const;
|
||||
G4double GetCutForProton() const;
|
||||
|
||||
protected:
|
||||
// these methods Construct particles
|
||||
void ConstructBosons();
|
||||
void ConstructLeptons();
|
||||
void ConstructMesons();
|
||||
void ConstructBaryons();
|
||||
|
||||
protected:
|
||||
// these methods Construct physics processes and register them
|
||||
void ConstructGeneral();
|
||||
void ConstructEM();
|
||||
|
||||
private:
|
||||
G4double cutForGamma;
|
||||
G4double cutForElectron;
|
||||
G4double cutForProton;
|
||||
G4double currentDefaultCut;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
// 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: G3toG4PrimaryGeneratorAction.hh,v 1.3 1999/12/05 17:50:25 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
|
||||
#ifndef G3toG4PrimaryGeneratorAction_h
|
||||
#define G3toG4PrimaryGeneratorAction_h 1
|
||||
|
||||
#include "G4Event.hh"
|
||||
#include "G4ParticleGun.hh"
|
||||
#include "G4VUserPrimaryGeneratorAction.hh"
|
||||
#include "G4ThreeVector.hh"
|
||||
|
||||
class G3toG4PrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction
|
||||
{
|
||||
public:
|
||||
G3toG4PrimaryGeneratorAction();
|
||||
~G3toG4PrimaryGeneratorAction();
|
||||
|
||||
public:
|
||||
void GeneratePrimaries(G4Event* anEvent);
|
||||
|
||||
private:
|
||||
G4ParticleGun* particleGun;
|
||||
G4ThreeVector GetRandomDirection();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
// 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: G3toG4RunAction.hh,v 1.3 1999/12/05 17:50:26 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
|
||||
#ifndef G3toG4RunAction_h
|
||||
#define G3toG4RunAction_h 1
|
||||
|
||||
#include "G4UserRunAction.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
class G4Run;
|
||||
|
||||
class G3toG4RunAction : public G4UserRunAction
|
||||
{
|
||||
public:
|
||||
G3toG4RunAction();
|
||||
~G3toG4RunAction();
|
||||
|
||||
public:
|
||||
void BeginOfRunAction(const G4Run* aRun);
|
||||
void EndOfRunAction(const G4Run* aRun);
|
||||
|
||||
private:
|
||||
G4int runIDcounter;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
// 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: G3toG4VisManager.hh,v 1.2 1999/12/05 17:50:26 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
// Example Visualization Manager implementing virtual function
|
||||
// RegisterGraphicsSystems. Exploits C-pre-processor variables
|
||||
// G4VIS_USE_DAWN, etc., which are set by the GNUmakefiles if
|
||||
// environment variables of the same name are set.
|
||||
|
||||
// So all you have to do is set environment variables and compile and
|
||||
// instantiate this in your main().
|
||||
|
||||
// Alternatively, you can implement an empty function here and just
|
||||
// register the systems you want in your main(), e.g.:
|
||||
// G4VisManager* myVisManager = new MyVisManager;
|
||||
// myVisManager -> RegisterGraphicsSystem (new MyGraphicsSystem);
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#ifndef G3toG4VisManager_h
|
||||
#define G3toG4VisManager_h 1
|
||||
|
||||
#include "G4VisManager.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
class G3toG4VisManager: public G4VisManager {
|
||||
|
||||
public:
|
||||
|
||||
G3toG4VisManager ();
|
||||
|
||||
private:
|
||||
|
||||
void RegisterGraphicsSystems ();
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,14 @@
|
||||
---- GSMATE 1 "AIR " 0.14610000E+02 0.70000002E+01 0.12050000E-02 0.30423240E+05 0
|
||||
---- GSMATE 2 "SILICON " 0.28090000E+02 0.14000000E+02 0.23299999E+01 0.93648071E+01 0
|
||||
---- GSTMED 1 "Mother " 1 0 2 0.15000000E+02 0.10000000E+02 -0.10000000E+01 -0.10000000E+01 0.99999998E-02 -0.10000000E+01 0
|
||||
---- GSTMED 2 "Detector " 2 0 2 0.15000000E+02 0.10000000E+02 -0.10000000E+01 -0.10000000E+01 0.99999998E-02 -0.10000000E+01 0
|
||||
---- GSROTM 1 90.00000 0.00000 90.00000 90.0000 0.0 0.0
|
||||
---- GSROTM 2 90.00000 90.00000 90.00000 180.0000 0.0 0.0
|
||||
---- GSROTM 3 90.00000 90.00000 90.00000 180.0000 180.0 0.0
|
||||
---- GSVOLU MOTH TUBE 1 3 0.0 50.0 50.
|
||||
---- GSVOLU MBOX BOX 1 3 5.0 5.0 5.0
|
||||
---- GSVOLU WAFR TRD1 2 4 1.0 2.0 3.0 0.015
|
||||
---- GSPOS WAFR 1 MBOX 0.00000000 0.00000000 0.0 1 ONLY
|
||||
---- GSPOS MBOX 1 MOTH 0.00000000 0.00000000 20.0 2 ONLY
|
||||
---- GSPOS MBOX 2 MOTH 0.00000000 0.00000000 -20.0 3 ONLY
|
||||
---- GGCLOS
|
||||
@@ -0,0 +1,110 @@
|
||||
// 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: G3toG4DetectorConstruction.cc,v 1.6 1999/12/05 17:50:28 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//--------------------------------------------------------------------------
|
||||
// G3toG4DetectorConstruction. Most the work is Done in
|
||||
// G4BuildGeom, which returns a G4LogicalVolume*, a pointer to the
|
||||
// top-level logiical volume in the detector defined by the call List file
|
||||
// inFile
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
#include "G4ios.hh"
|
||||
#include "G3toG4DetectorConstruction.hh"
|
||||
#include "G4VisAttributes.hh"
|
||||
#include "G4Colour.hh"
|
||||
#include "G4Material.hh"
|
||||
#include "G4Box.hh"
|
||||
|
||||
G3toG4DetectorConstruction::G3toG4DetectorConstruction(G4String inFile){
|
||||
_inFile = inFile;
|
||||
G4cout << "Instantiated G3toG4DetectorConstruction using call list file \""
|
||||
<< _inFile << "\"" << endl;
|
||||
}
|
||||
|
||||
G3toG4DetectorConstruction::~G3toG4DetectorConstruction(){
|
||||
// G4cout << "Deleted G3toG4DetectorConstruction..." << endl;
|
||||
}
|
||||
|
||||
G4VPhysicalVolume*
|
||||
G3toG4DetectorConstruction::Construct(){
|
||||
_lv = G4BuildGeom(_inFile);
|
||||
//_lv = SimpleConstruct();
|
||||
if (_lv != 0) {
|
||||
_pv = new G4PVPlacement(0, G4ThreeVector(), _lv, _lv->GetName(), 0,
|
||||
false, 0);
|
||||
G4cout << "Top-level G3toG4 logical volume " << _lv->GetName() << " "
|
||||
<< *(_lv -> GetVisAttributes()) << endl;
|
||||
} else
|
||||
G4cerr << "creation of logical mother failed !!!" << endl;
|
||||
return _pv;
|
||||
}
|
||||
G4LogicalVolume*
|
||||
G3toG4DetectorConstruction::SimpleConstruct(){
|
||||
G4String name, symbol; //a=mass of a mole;
|
||||
G4double a, z, density, fractionmass; //z=mean number of protons;
|
||||
G4int ncomponents, iz, n; //iz=number of protons in an isotope;
|
||||
// n=number of nucleons in an isotope;
|
||||
|
||||
a = 14.01*g/mole;
|
||||
G4Element* N = new G4Element(name="Nitrogen",symbol="N" , z= 7., a);
|
||||
|
||||
a = 16.00*g/mole;
|
||||
G4Element* O = new G4Element(name="Oxygen" ,symbol="O" , z= 8., a);
|
||||
|
||||
//
|
||||
// define a material from elements. case 2: mixture by fractional mass
|
||||
//
|
||||
|
||||
density = 1.290*mg/cm3;
|
||||
G4Material* Air = new G4Material(name="Air" , density, ncomponents=2);
|
||||
Air->AddElement(N, fractionmass=0.7);
|
||||
Air->AddElement(O, fractionmass=0.3);
|
||||
G4VSolid* Mother = new G4Box("TestMother", //its name
|
||||
100*cm, 100*cm, 100*cm); //its size
|
||||
|
||||
G4VSolid* Daughter = new G4Box("TestDaughter", 50*cm, 20*cm, 10*cm);
|
||||
|
||||
G4LogicalVolume* logicMother = new G4LogicalVolume(Mother, //its solid
|
||||
Air, //its material
|
||||
"LTestMother");//its name
|
||||
|
||||
G4LogicalVolume* logicDaughter = new G4LogicalVolume(Daughter, //its solid
|
||||
Air, //its material
|
||||
"LTestDaughter");
|
||||
|
||||
G4VPhysicalVolume* physiDaughter = new G4PVPlacement(0,
|
||||
G4ThreeVector(),
|
||||
logicDaughter,
|
||||
"PTestDaughter",
|
||||
logicMother,
|
||||
false,0);
|
||||
//
|
||||
// Visualization attributes
|
||||
//
|
||||
|
||||
logicMother->SetVisAttributes (G4VisAttributes::Invisible);
|
||||
G4VisAttributes* DaughterVisAtt= new G4VisAttributes(G4Colour(1.0,1.0,1.0));
|
||||
DaughterVisAtt->SetVisibility(true);
|
||||
logicDaughter->SetVisAttributes(DaughterVisAtt);
|
||||
return logicMother;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,77 @@
|
||||
// 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: G3toG4EventAction.cc,v 1.6 1999/12/05 17:50:28 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#include "g4rw/tvordvec.h"
|
||||
#include "G4ios.hh"
|
||||
#include "G3toG4EventAction.hh"
|
||||
#include "G3toG4EventActionMessenger.hh"
|
||||
#include "G4Event.hh"
|
||||
#include "G4EventManager.hh"
|
||||
#include "G4HCofThisEvent.hh"
|
||||
#include "G4TrajectoryContainer.hh"
|
||||
#include "G4Trajectory.hh"
|
||||
#include "G4VVisManager.hh"
|
||||
#include "G4UImanager.hh"
|
||||
#include "G4UnitsTable.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G3toG4EventAction::G3toG4EventAction()
|
||||
: drawFlag("all"),eventMessenger(NULL)
|
||||
{
|
||||
eventMessenger = new G3toG4EventActionMessenger(this);
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G3toG4EventAction::~G3toG4EventAction()
|
||||
{
|
||||
delete eventMessenger;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4EventAction::BeginOfEventAction(const G4Event* Ev)
|
||||
{;}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4EventAction::EndOfEventAction(const G4Event* Ev)
|
||||
{
|
||||
const G4Event* evt = fpEventManager->GetConstCurrentEvent();
|
||||
|
||||
G4cout << ">>> Event " << evt->GetEventID() << endl;
|
||||
|
||||
G4TrajectoryContainer * trajectoryContainer = evt->GetTrajectoryContainer();
|
||||
G4int n_trajectories = 0;
|
||||
if(trajectoryContainer){
|
||||
n_trajectories = trajectoryContainer->entries();
|
||||
}
|
||||
G4cout << " " << n_trajectories
|
||||
<< " trajectories stored in this event." << endl;
|
||||
|
||||
if(G4VVisManager::GetConcreteInstance()){
|
||||
for(G4int i=0; i<n_trajectories; i++) {
|
||||
G4Trajectory* trj = (G4Trajectory*)(*(evt->GetTrajectoryContainer()))[i];
|
||||
if (drawFlag == "all") trj->DrawTrajectory(50);
|
||||
else if ((drawFlag == "charged")&&(trj->GetCharge() != 0.))
|
||||
trj->DrawTrajectory(50);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
// 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: G3toG4EventActionMessenger.cc,v 1.2 1999/12/05 17:50:29 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#include "G3toG4EventActionMessenger.hh"
|
||||
|
||||
#include "G3toG4EventAction.hh"
|
||||
#include "G4UIcmdWithAString.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G3toG4EventActionMessenger::G3toG4EventActionMessenger(G3toG4EventAction* EvAct)
|
||||
:eventAction(EvAct)
|
||||
{
|
||||
DrawCmd = new G4UIcmdWithAString("/event/draw",this);
|
||||
DrawCmd->SetGuidance("Draw the tracks in the event");
|
||||
DrawCmd->SetGuidance(" Choice : none, charged, all (default)");
|
||||
DrawCmd->SetParameterName("choice",true);
|
||||
DrawCmd->SetDefaultValue("all");
|
||||
DrawCmd->SetCandidates("none charged all");
|
||||
DrawCmd->AvailableForStates(Idle);
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G3toG4EventActionMessenger::~G3toG4EventActionMessenger()
|
||||
{
|
||||
delete DrawCmd;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4EventActionMessenger::SetNewValue(G4UIcommand * command,G4String newValue)
|
||||
{
|
||||
if(command == DrawCmd)
|
||||
{eventAction->SetDrawFlag(newValue);}
|
||||
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
@@ -0,0 +1,294 @@
|
||||
// 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: G3toG4PhysicsList.cc,v 1.6 1999/12/05 17:50:29 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#include "G3toG4PhysicsList.hh"
|
||||
|
||||
#include "G4ParticleDefinition.hh"
|
||||
#include "G4ParticleWithCuts.hh"
|
||||
#include "G4ProcessManager.hh"
|
||||
#include "G4ProcessVector.hh"
|
||||
#include "G4ParticleTypes.hh"
|
||||
#include "G4ParticleTable.hh"
|
||||
#include "G4Material.hh"
|
||||
#include "G4ios.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G3toG4PhysicsList::G3toG4PhysicsList(): G4VUserPhysicsList()
|
||||
{
|
||||
currentDefaultCut = defaultCutValue = 2.0*mm;
|
||||
cutForGamma = defaultCutValue;
|
||||
cutForElectron = defaultCutValue;
|
||||
cutForProton = defaultCutValue;
|
||||
|
||||
SetVerboseLevel(1);
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G3toG4PhysicsList::~G3toG4PhysicsList()
|
||||
{}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4PhysicsList::ConstructParticle()
|
||||
{
|
||||
// In this method, static member functions should be called
|
||||
// for all particles which you want to use.
|
||||
// This ensures that objects of these particle types will be
|
||||
// created in the program.
|
||||
|
||||
ConstructBosons();
|
||||
ConstructLeptons();
|
||||
ConstructMesons();
|
||||
ConstructBaryons();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4PhysicsList::ConstructBosons()
|
||||
{
|
||||
// pseudo-particles
|
||||
G4Geantino::GeantinoDefinition();
|
||||
G4ChargedGeantino::ChargedGeantinoDefinition();
|
||||
|
||||
// gamma
|
||||
G4Gamma::GammaDefinition();
|
||||
|
||||
// optical photon
|
||||
G4OpticalPhoton::OpticalPhotonDefinition();
|
||||
}
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4PhysicsList::ConstructLeptons()
|
||||
{
|
||||
// leptons
|
||||
G4Electron::ElectronDefinition();
|
||||
G4Positron::PositronDefinition();
|
||||
G4MuonPlus::MuonPlusDefinition();
|
||||
G4MuonMinus::MuonMinusDefinition();
|
||||
|
||||
G4NeutrinoE::NeutrinoEDefinition();
|
||||
G4AntiNeutrinoE::AntiNeutrinoEDefinition();
|
||||
G4NeutrinoMu::NeutrinoMuDefinition();
|
||||
G4AntiNeutrinoMu::AntiNeutrinoMuDefinition();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4PhysicsList::ConstructMesons()
|
||||
{
|
||||
// mesons
|
||||
G4PionPlus::PionPlusDefinition();
|
||||
G4PionMinus::PionMinusDefinition();
|
||||
G4PionZero::PionZeroDefinition();
|
||||
G4Eta::EtaDefinition();
|
||||
G4EtaPrime::EtaPrimeDefinition();
|
||||
G4RhoZero::RhoZeroDefinition();
|
||||
G4KaonPlus::KaonPlusDefinition();
|
||||
G4KaonMinus::KaonMinusDefinition();
|
||||
G4KaonZero::KaonZeroDefinition();
|
||||
G4AntiKaonZero::AntiKaonZeroDefinition();
|
||||
G4KaonZeroLong::KaonZeroLongDefinition();
|
||||
G4KaonZeroShort::KaonZeroShortDefinition();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4PhysicsList::ConstructBaryons()
|
||||
{
|
||||
// barions
|
||||
G4Proton::ProtonDefinition();
|
||||
G4AntiProton::AntiProtonDefinition();
|
||||
G4Neutron::NeutronDefinition();
|
||||
G4AntiNeutron::AntiNeutronDefinition();
|
||||
}
|
||||
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4PhysicsList::ConstructProcess()
|
||||
{
|
||||
AddTransportation();
|
||||
ConstructEM();
|
||||
ConstructGeneral();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#include "G4ComptonScattering.hh"
|
||||
#include "G4GammaConversion.hh"
|
||||
#include "G4PhotoElectricEffect.hh"
|
||||
|
||||
#include "G4MultipleScattering.hh"
|
||||
|
||||
#include "G4eIonisation.hh"
|
||||
#include "G4eBremsstrahlung.hh"
|
||||
#include "G4eplusAnnihilation.hh"
|
||||
|
||||
#include "G4MuIonisation.hh"
|
||||
#include "G4MuBremsstrahlung.hh"
|
||||
#include "G4MuPairProduction.hh"
|
||||
|
||||
#include "G4hIonisation.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4PhysicsList::ConstructEM()
|
||||
{
|
||||
theParticleIterator->reset();
|
||||
while( (*theParticleIterator)() ){
|
||||
G4ParticleDefinition* particle = theParticleIterator->value();
|
||||
G4ProcessManager* pmanager = particle->GetProcessManager();
|
||||
G4String particleName = particle->GetParticleName();
|
||||
|
||||
if (particleName == "gamma") {
|
||||
//gamma
|
||||
pmanager->AddDiscreteProcess(new G4PhotoElectricEffect());
|
||||
pmanager->AddDiscreteProcess(new G4ComptonScattering());
|
||||
pmanager->AddDiscreteProcess(new G4GammaConversion());
|
||||
|
||||
} else if (particleName == "e-") {
|
||||
//electron
|
||||
pmanager->AddProcess(new G4MultipleScattering(),-1, 1,1);
|
||||
pmanager->AddProcess(new G4eIonisation(), -1, 2,2);
|
||||
pmanager->AddProcess(new G4eBremsstrahlung(), -1,-1,3);
|
||||
|
||||
} else if (particleName == "e+") {
|
||||
//positron
|
||||
pmanager->AddProcess(new G4MultipleScattering(),-1, 1,1);
|
||||
pmanager->AddProcess(new G4eIonisation(), -1, 2,2);
|
||||
pmanager->AddProcess(new G4eBremsstrahlung(), -1,-1,3);
|
||||
pmanager->AddProcess(new G4eplusAnnihilation(), 0,-1,4);
|
||||
|
||||
} else if( particleName == "mu+" ||
|
||||
particleName == "mu-" ) {
|
||||
//muon
|
||||
pmanager->AddProcess(new G4MultipleScattering(),-1, 1,1);
|
||||
pmanager->AddProcess(new G4MuIonisation(), -1, 2,2);
|
||||
pmanager->AddProcess(new G4MuBremsstrahlung(), -1,-1,3);
|
||||
pmanager->AddProcess(new G4MuPairProduction(), -1,-1,4);
|
||||
|
||||
} else if ((!particle->IsShortLived()) &&
|
||||
(particle->GetPDGCharge() != 0.0) &&
|
||||
(particle->GetParticleName() != "chargedgeantino")) {
|
||||
//all others charged particles except geantino
|
||||
pmanager->AddProcess(new G4MultipleScattering(),-1,1,1);
|
||||
pmanager->AddProcess(new G4hIonisation(), -1,2,2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#include "G4Decay.hh"
|
||||
|
||||
void G3toG4PhysicsList::ConstructGeneral()
|
||||
{
|
||||
// Add Decay Process
|
||||
G4Decay* theDecayProcess = new G4Decay();
|
||||
theParticleIterator->reset();
|
||||
while( (*theParticleIterator)() ){
|
||||
G4ParticleDefinition* particle = theParticleIterator->value();
|
||||
G4ProcessManager* pmanager = particle->GetProcessManager();
|
||||
if (theDecayProcess->IsApplicable(*particle)) {
|
||||
pmanager ->AddProcess(theDecayProcess);
|
||||
// set ordering for PostStepDoIt and AtRestDoIt
|
||||
pmanager ->SetProcessOrdering(theDecayProcess, idxPostStep);
|
||||
pmanager ->SetProcessOrdering(theDecayProcess, idxAtRest);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4PhysicsList::SetCuts()
|
||||
{
|
||||
// reactualise cutValues
|
||||
if (currentDefaultCut != defaultCutValue)
|
||||
{
|
||||
if(cutForGamma == currentDefaultCut) cutForGamma = defaultCutValue;
|
||||
if(cutForElectron == currentDefaultCut) cutForElectron = defaultCutValue;
|
||||
if(cutForProton == currentDefaultCut) cutForProton = defaultCutValue;
|
||||
currentDefaultCut = defaultCutValue;
|
||||
}
|
||||
|
||||
if (verboseLevel >0){
|
||||
G4cout << "G3toG4PhysicsList::SetCuts:";
|
||||
G4cout << "CutLength : " << G4BestUnit(defaultCutValue,"Length") << endl;
|
||||
}
|
||||
|
||||
// set cut values for gamma at first and for e- second and next for e+,
|
||||
// because some processes for e+/e- need cut values for gamma
|
||||
SetCutValue(cutForGamma, "gamma");
|
||||
SetCutValue(cutForElectron, "e-");
|
||||
SetCutValue(cutForElectron, "e+");
|
||||
|
||||
// set cut values for proton and anti_proton before all other hadrons
|
||||
// because some processes for hadrons need cut values for proton/anti_proton
|
||||
SetCutValue(cutForProton, "proton");
|
||||
SetCutValue(cutForProton, "anti_proton");
|
||||
|
||||
SetCutValueForOthers(defaultCutValue);
|
||||
|
||||
if (verboseLevel>0) DumpCutValuesTable();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
|
||||
void G3toG4PhysicsList::SetCutForGamma(G4double cut)
|
||||
{
|
||||
ResetCuts();
|
||||
cutForGamma = cut;
|
||||
}
|
||||
|
||||
void G3toG4PhysicsList::SetCutForElectron(G4double cut)
|
||||
{
|
||||
ResetCuts();
|
||||
cutForElectron = cut;
|
||||
}
|
||||
|
||||
void G3toG4PhysicsList::SetCutForProton(G4double cut)
|
||||
{
|
||||
ResetCuts();
|
||||
cutForProton = cut;
|
||||
}
|
||||
|
||||
G4double G3toG4PhysicsList::GetCutForGamma() const
|
||||
{
|
||||
return cutForGamma;
|
||||
}
|
||||
|
||||
G4double G3toG4PhysicsList::GetCutForElectron() const
|
||||
{
|
||||
return cutForElectron;
|
||||
}
|
||||
|
||||
G4double G3toG4PhysicsList::GetCutForProton() const
|
||||
{
|
||||
return cutForGamma;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
// 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: G3toG4PrimaryGeneratorAction.cc,v 1.3 1999/12/05 17:50:29 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
|
||||
#include "globals.hh"
|
||||
#include "Randomize.hh"
|
||||
#include "G3toG4PrimaryGeneratorAction.hh"
|
||||
#include "G4Event.hh"
|
||||
#include "G4ParticleGun.hh"
|
||||
#include "G4ParticleTable.hh"
|
||||
#include "G4ParticleDefinition.hh"
|
||||
|
||||
G3toG4PrimaryGeneratorAction::G3toG4PrimaryGeneratorAction(){
|
||||
G4int n_particle = 1;
|
||||
particleGun = new G4ParticleGun(n_particle);
|
||||
|
||||
G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
|
||||
G4String particleName;
|
||||
G4ParticleDefinition* particle
|
||||
= particleTable->FindParticle(particleName="chargedgeantino");
|
||||
particleGun->SetParticleDefinition(particle);
|
||||
G4ThreeVector direction(0, 0, 1);
|
||||
particleGun->SetParticleMomentumDirection(direction.unit());
|
||||
particleGun->SetParticleEnergy(1.*GeV);
|
||||
particleGun->SetParticlePosition(G4ThreeVector(0.*cm, 0.*cm,0.*cm));
|
||||
}
|
||||
|
||||
G3toG4PrimaryGeneratorAction::~G3toG4PrimaryGeneratorAction(){
|
||||
delete particleGun;
|
||||
}
|
||||
|
||||
void
|
||||
G3toG4PrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent){
|
||||
G4ThreeVector direction = GetRandomDirection();
|
||||
G4cout << ">>>>>>>> Primary direction: " << direction << endl;
|
||||
particleGun->SetParticleMomentumDirection( direction.unit() ) ;
|
||||
particleGun->GeneratePrimaryVertex(anEvent);
|
||||
particleGun->GeneratePrimaryVertex(anEvent);
|
||||
}
|
||||
|
||||
G4ThreeVector
|
||||
G3toG4PrimaryGeneratorAction::GetRandomDirection() {
|
||||
|
||||
G4ThreeVector retval;
|
||||
|
||||
G4double CosTheta;
|
||||
G4double SinTheta;
|
||||
|
||||
G4double Phi;
|
||||
G4double SinPhi;
|
||||
G4double CosPhi;
|
||||
|
||||
G4double rand;
|
||||
|
||||
rand = G4UniformRand();
|
||||
|
||||
CosTheta = 2.0*rand -1.0;
|
||||
SinTheta = sqrt (1.-CosTheta*CosTheta);
|
||||
rand = G4UniformRand();
|
||||
Phi = twopi*rand;
|
||||
SinPhi = sin (Phi);
|
||||
CosPhi = cos (Phi);
|
||||
retval.setX(SinTheta*CosPhi);
|
||||
retval.setY(SinTheta*SinPhi);
|
||||
retval.setZ(CosTheta);
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
// 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: G3toG4RunAction.cc,v 1.5 1999/12/05 17:50:29 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
|
||||
#include "G4ios.hh"
|
||||
#include "G3toG4RunAction.hh"
|
||||
#include "G4Run.hh"
|
||||
#include "G4VVisManager.hh"
|
||||
#include "G4UImanager.hh"
|
||||
#include "G4ios.hh"
|
||||
|
||||
G3toG4RunAction::G3toG4RunAction(){
|
||||
runIDcounter = 0;
|
||||
}
|
||||
|
||||
G3toG4RunAction::~G3toG4RunAction(){;}
|
||||
|
||||
void G3toG4RunAction::BeginOfRunAction(const G4Run* aRun){
|
||||
((G4Run *)(aRun))->SetRunID(runIDcounter++);
|
||||
G4cout << "### Run " << aRun->GetRunID() << " start." << endl;
|
||||
|
||||
G4UImanager* UI = G4UImanager::GetUIpointer();
|
||||
|
||||
if (G4VVisManager::GetConcreteInstance()) {
|
||||
UI->ApplyCommand("/vis~/clear/view");
|
||||
UI->ApplyCommand("/vis~/draw/current");
|
||||
}
|
||||
}
|
||||
|
||||
void G3toG4RunAction::EndOfRunAction(const G4Run* aRun){;}
|
||||
|
||||
@@ -0,0 +1,142 @@
|
||||
// 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: G3toG4VisManager.cc,v 1.3 1999/12/05 17:50:29 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
// John Allison 24th January 1998.
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#include "G4ios.hh"
|
||||
#ifdef G4VIS_USE
|
||||
|
||||
#include "G3toG4VisManager.hh"
|
||||
|
||||
// Supported drivers...
|
||||
|
||||
#ifdef G4VIS_USE_DAWN
|
||||
#include "G4FukuiRenderer.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_DAWNFILE
|
||||
#include "G4DAWNFILE.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OPACS
|
||||
#include "G4Wo.hh"
|
||||
#include "G4Xo.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OPENGLX
|
||||
#include "G4OpenGLImmediateX.hh"
|
||||
#include "G4OpenGLStoredX.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OPENGLWIN32
|
||||
#include "G4OpenGLImmediateWin32.hh"
|
||||
#include "G4OpenGLStoredWin32.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OPENGLXM
|
||||
#include "G4OpenGLImmediateXm.hh"
|
||||
#include "G4OpenGLStoredXm.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OIX
|
||||
#include "G4OpenInventorX.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OIWIN32
|
||||
#include "G4OpenInventorWin32.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_RAYX
|
||||
#include "G4RayX.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_VRML
|
||||
#include "G4VRML1.hh"
|
||||
#include "G4VRML2.hh"
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_VRMLFILE
|
||||
#include "G4VRML1File.hh"
|
||||
#include "G4VRML2File.hh"
|
||||
#endif
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G3toG4VisManager::G3toG4VisManager () {}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void G3toG4VisManager::RegisterGraphicsSystems () {
|
||||
|
||||
#ifdef G4VIS_USE_DAWN
|
||||
RegisterGraphicsSystem (new G4FukuiRenderer);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_DAWNFILE
|
||||
RegisterGraphicsSystem (new G4DAWNFILE);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OPACS
|
||||
RegisterGraphicsSystem (new G4Wo);
|
||||
RegisterGraphicsSystem (new G4Xo);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OPENGLX
|
||||
RegisterGraphicsSystem (new G4OpenGLImmediateX);
|
||||
RegisterGraphicsSystem (new G4OpenGLStoredX);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OPENGLWIN32
|
||||
RegisterGraphicsSystem (new G4OpenGLImmediateWin32);
|
||||
RegisterGraphicsSystem (new G4OpenGLStoredWin32);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OPENGLXM
|
||||
RegisterGraphicsSystem (new G4OpenGLImmediateXm);
|
||||
RegisterGraphicsSystem (new G4OpenGLStoredXm);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OIX
|
||||
RegisterGraphicsSystem (new G4OpenInventorX);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_OIWIN32
|
||||
RegisterGraphicsSystem (new G4OpenInventorWin32);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_RAYX
|
||||
RegisterGraphicsSystem (new G4RayX);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_VRML
|
||||
RegisterGraphicsSystem (new G4VRML1);
|
||||
RegisterGraphicsSystem (new G4VRML2);
|
||||
#endif
|
||||
|
||||
#ifdef G4VIS_USE_VRMLFILE
|
||||
RegisterGraphicsSystem (new G4VRML1File);
|
||||
RegisterGraphicsSystem (new G4VRML2File);
|
||||
#endif
|
||||
|
||||
if (fVerbose > 0) {
|
||||
G4cout <<
|
||||
"\nYou have successfully chosen to use the following graphics systems."
|
||||
<< endl;
|
||||
PrintAvailableGraphicsSystems ();
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
@@ -0,0 +1,598 @@
|
||||
---- GSMATE 1 "HYDROGEN " 0.10100000E+01 0.10000000E+01 0.70799999E-01 0.86500000E+03 0
|
||||
---- GSMATE 2 "DEUTERIUM " 0.20100000E+01 0.10000000E+01 0.16200000E+00 0.75700000E+03 0
|
||||
---- GSMATE 3 "HELIUM " 0.40000000E+01 0.20000000E+01 0.12500000E+00 0.75500000E+03 0
|
||||
---- GSMATE 4 "LITHIUM " 0.69400001E+01 0.30000000E+01 0.53399998E+00 0.15500000E+03 0
|
||||
---- GSMATE 5 "BERILLIUM " 0.90100002E+01 0.40000000E+01 0.18480000E+01 0.35299999E+02 0
|
||||
---- GSMATE 6 "CARBON " 0.12010000E+02 0.60000000E+01 0.22650001E+01 0.18799999E+02 0
|
||||
---- GSMATE 7 "NITROGEN " 0.14010000E+02 0.70000000E+01 0.80800003E+00 0.44500000E+02 0
|
||||
---- GSMATE 8 "NEON " 0.20180000E+02 0.10000000E+02 0.12070000E+01 0.24000000E+02 0
|
||||
---- GSMATE 9 "ALUMINIUM " 0.26980000E+02 0.13000000E+02 0.27000000E+01 0.88999996E+01 0
|
||||
---- GSMATE 10 "IRON " 0.55849998E+02 0.26000000E+02 0.78699999E+01 0.17600000E+01 0
|
||||
---- GSMATE 11 "COPPER " 0.63540001E+02 0.29000000E+02 0.89600000E+01 0.14299999E+01 0
|
||||
---- GSMATE 12 "TUNGSTEN " 0.18385001E+03 0.74000000E+02 0.19299999E+02 0.34999999E+00 0
|
||||
---- GSMATE 13 "LEAD " 0.20719000E+03 0.82000000E+02 0.11350000E+02 0.56000000E+00 0
|
||||
---- GSMATE 14 "URANIUM " 0.23803000E+03 0.92000000E+02 0.18950001E+02 0.31999999E+00 0
|
||||
---- GSMATE 15 "AIR " 0.14610000E+02 0.73000002E+01 0.12050000E-02 0.30423240E+05 0
|
||||
---- GSMATE 16 "VACUUM " 0.10000000E-15 0.10000000E-15 0.10000000E-15 0.10000000E+17 0
|
||||
---- GSMIXT 17 "svt-Shield " 0.16785001E+01 2 0.12011000E+02 0.26981539E+02 0.60000000E+01 0.13000000E+02 0.87180001E+00 0.12819999E+00
|
||||
---- GSMATE 18 "svt-Aluminum " 0.26981539E+02 0.13000000E+02 0.27000000E+01 0.88756104E+01 0
|
||||
---- GSMATE 19 "svt-Resin " 0.13060000E+02 0.60000000E+01 0.11600000E+01 0.31594828E+02 0
|
||||
---- GSMATE 20 "svt-Silicon " 0.28085501E+02 0.14000000E+02 0.23299999E+01 0.93496084E+01 0
|
||||
---- GSMIXT 21 "svt-Berg " 0.22000000E+01 4 0.63546001E+02 0.65389999E+02 0.20720000E+03 0.55847000E+02 0.29000000E+02 0.30000000E+02 0.82000000E+02 0.26000000E+02 0.61500001E+00 0.36000001E+00 0.20000000E-01 0.49999999E-02
|
||||
---- GSMIXT 22 "svt-Water " 0.10000000E+01 2 0.10079401E+01 0.15999400E+02 0.10000000E+01 0.80000000E+01 0.11189836E+00 0.88810170E+00
|
||||
---- GSMIXT 23 "svt-Brass " 0.82299995E+01 4 0.63546001E+02 0.65389999E+02 0.20720000E+03 0.55847000E+02 0.29000000E+02 0.30000000E+02 0.82000000E+02 0.26000000E+02 0.61500001E+00 0.36000001E+00 0.20000000E-01 0.49999999E-02
|
||||
---- GSMIXT 24 "svt-Air " 0.12900000E-02 2 0.14006740E+02 0.15999400E+02 0.70000000E+01 0.80000000E+01 0.73699999E+00 0.26300001E+00
|
||||
---- GSMIXT 25 "svt-AlN " 0.32800000E+01 2 0.26981539E+02 0.14006740E+02 0.13000000E+02 0.70000000E+01 0.66000003E+00 0.34000000E+00
|
||||
---- GSMATE 26 "svt-Kapton " 0.12011000E+02 0.60000000E+01 0.14200000E+01 0.29927940E+02 0
|
||||
---- GSMIXT 27 "svt-KaptCu " 0.33862000E+01 2 0.12011000E+02 0.63546001E+02 0.60000000E+01 0.29000000E+02 0.31000000E+00 0.69000000E+00
|
||||
---- GSMATE 28 "svt-Hardner " 0.13060000E+02 0.60000000E+01 0.10100000E+01 0.41940594E+02 0
|
||||
---- GSMIXT 29 "svt-Kevlar " 0.16000000E+01 3 0.12011000E+02 0.13060000E+02 0.13060000E+02 0.60000000E+01 0.60000000E+01 0.60000000E+01 0.60000002E+00 0.28000000E+00 0.12000000E+00
|
||||
---- GSMATE 30 "svt-CFiber " 0.12011000E+02 0.60000000E+01 0.15900000E+01 0.26728094E+02 0
|
||||
---- GSMIXT 31 "svt-Epoxy " 0.11100000E+01 2 0.13060000E+02 0.13060000E+02 0.60000000E+01 0.60000000E+01 0.69999999E+00 0.30000001E+00
|
||||
---- GSTMED 1 "BB Detector " 15 0 2 0.15000000E+02 0.10000000E+02 -0.10000000E+01 -0.10000000E+01 0.99999998E-02 -0.10000000E+01 0
|
||||
---- GSTMED 2 "silicon-mother " 24 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.99999998E-02 -0.10000000E+01 0
|
||||
---- GSTMED 3 "silicon-detectors " 20 1 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.99999997E-04 -0.10000000E+01 0
|
||||
---- GSTMED 4 "inert-silicon " 20 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.99999997E-04 -0.10000000E+01 0
|
||||
---- GSTMED 5 "kapton " 27 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.99999997E-04 -0.10000000E+01 0
|
||||
---- GSTMED 6 "support-material " 29 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.99999998E-02 -0.10000000E+01 0
|
||||
---- GSTMED 7 "rohacell " 30 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.99999998E-02 -0.10000000E+01 0
|
||||
---- GSTMED 8 "electronics " 20 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.10000000E-02 -0.10000000E+01 0
|
||||
---- GSTMED 9 "AlN-sub " 25 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.10000000E-02 -0.10000000E+01 0
|
||||
---- GSTMED 10 "bushing " 23 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.10000000E-02 -0.10000000E+01 0
|
||||
---- GSTMED 11 "water " 22 0 2 0.15000000E+02 0.10000000E+01 -0.10000000E+01 -0.10000000E+01 0.10000000E-02 -0.10000000E+01 0
|
||||
---- GSROTM 1 90.00000 95.40000 90.00000 5.40000 180.00000 -129.60001
|
||||
---- GSROTM 2 90.00000 -84.60000 90.00000 5.40000 0.00000 -39.60000
|
||||
---- GSROTM 3 90.00000 155.39999 90.00000 65.40000 179.99998 -69.60001
|
||||
---- GSROTM 4 90.00000 -24.60000 90.00000 65.40000 0.00000 20.40000
|
||||
---- GSROTM 5 90.00000 215.39999 90.00000 125.40000 179.99998 -9.60000
|
||||
---- GSROTM 6 90.00000 35.40000 90.00000 125.40000 0.00001 80.40000
|
||||
---- GSROTM 7 90.00000 275.39999 90.00000 185.39999 179.99998 50.40000
|
||||
---- GSROTM 8 90.00000 95.39999 90.00000 185.39999 0.00000 140.39999
|
||||
---- GSROTM 9 90.00000 335.39999 90.00000 245.39999 179.99998 110.39999
|
||||
---- GSROTM 10 90.00000 155.39999 90.00000 245.39999 0.00001 -159.60002
|
||||
---- GSROTM 11 90.00000 395.39999 90.00000 305.39999 179.99998 170.39999
|
||||
---- GSROTM 12 90.00000 215.39999 90.00000 305.39999 0.00001 -99.60001
|
||||
---- GSROTM 13 90.00000 95.40000 90.00000 5.40000 180.00000 -129.60001
|
||||
---- GSROTM 14 90.00000 -84.60000 90.00000 5.40000 0.00000 -39.60000
|
||||
---- GSROTM 15 90.00000 155.39999 90.00000 65.40000 179.99998 -69.60001
|
||||
---- GSROTM 16 90.00000 -24.60000 90.00000 65.40000 0.00000 20.40000
|
||||
---- GSROTM 17 90.00000 215.39999 90.00000 125.40000 179.99998 -9.60000
|
||||
---- GSROTM 18 90.00000 35.40000 90.00000 125.40000 0.00001 80.40000
|
||||
---- GSROTM 19 90.00000 275.39999 90.00000 185.39999 179.99998 50.40000
|
||||
---- GSROTM 20 90.00000 95.39999 90.00000 185.39999 0.00000 140.39999
|
||||
---- GSROTM 21 90.00000 335.39999 90.00000 245.39999 179.99998 110.39999
|
||||
---- GSROTM 22 90.00000 155.39999 90.00000 245.39999 0.00001 -159.60002
|
||||
---- GSROTM 23 90.00000 395.39999 90.00000 305.39999 179.99998 170.39999
|
||||
---- GSROTM 24 90.00000 215.39999 90.00000 305.39999 0.00001 -99.60001
|
||||
---- GSROTM 25 90.00000 95.40000 90.00000 5.40000 180.00000 -129.60001
|
||||
---- GSROTM 26 90.00000 -84.60000 90.00000 5.40000 0.00000 -39.60000
|
||||
---- GSROTM 27 90.00000 155.39999 90.00000 65.40000 179.99998 -69.60001
|
||||
---- GSROTM 28 90.00000 -24.60000 90.00000 65.40000 0.00000 20.40000
|
||||
---- GSROTM 29 90.00000 215.39999 90.00000 125.40000 179.99998 -9.60000
|
||||
---- GSROTM 30 90.00000 35.40000 90.00000 125.40000 0.00001 80.40000
|
||||
---- GSROTM 31 90.00000 275.39999 90.00000 185.39999 179.99998 50.40000
|
||||
---- GSROTM 32 90.00000 95.39999 90.00000 185.39999 0.00000 140.39999
|
||||
---- GSROTM 33 90.00000 335.39999 90.00000 245.39999 179.99998 110.39999
|
||||
---- GSROTM 34 90.00000 155.39999 90.00000 245.39999 0.00001 -159.60002
|
||||
---- GSROTM 35 90.00000 395.39999 90.00000 305.39999 179.99998 170.39999
|
||||
---- GSROTM 36 90.00000 215.39999 90.00000 305.39999 0.00001 -99.60001
|
||||
---- GSROTM 37 90.00000 101.25000 62.00000 11.25000 152.00000 11.25000
|
||||
---- GSROTM 38 90.00000 101.25000 90.00000 11.25000 180.00000 -123.75000
|
||||
---- GSROTM 39 90.00000 -78.75000 90.00000 11.25000 0.00000 -33.75000
|
||||
---- GSROTM 40 90.00000 -78.75000 117.00000 11.25000 26.99999 11.25000
|
||||
---- GSROTM 41 90.00000 123.75000 62.00000 33.75000 152.00000 33.74999
|
||||
---- GSROTM 42 90.00000 123.75000 90.00000 33.75000 180.00000 -101.25000
|
||||
---- GSROTM 43 90.00000 -56.25000 90.00000 33.75000 0.00000 -11.25000
|
||||
---- GSROTM 44 90.00000 -56.25000 117.00000 33.75000 26.99999 33.75000
|
||||
---- GSROTM 45 90.00000 146.25000 62.00000 56.25000 152.00000 56.25000
|
||||
---- GSROTM 46 90.00000 146.25000 90.00000 56.25000 180.00000 -78.75000
|
||||
---- GSROTM 47 90.00000 -33.75000 90.00000 56.25000 0.00000 11.25000
|
||||
---- GSROTM 48 90.00000 -33.75000 117.00000 56.25000 26.99999 56.25000
|
||||
---- GSROTM 49 90.00000 168.75000 62.00000 78.75000 152.00000 78.75000
|
||||
---- GSROTM 50 90.00000 168.75000 90.00000 78.75000 180.00000 -56.25000
|
||||
---- GSROTM 51 90.00000 -11.25000 90.00000 78.75000 0.00000 33.75000
|
||||
---- GSROTM 52 90.00000 -11.25000 117.00000 78.75000 26.99999 78.74999
|
||||
---- GSROTM 53 90.00000 191.25000 62.00000 101.25000 152.00000 101.24999
|
||||
---- GSROTM 54 90.00000 191.25000 90.00000 101.25000 180.00000 -33.75000
|
||||
---- GSROTM 55 90.00000 11.25000 90.00000 101.25000 0.00000 56.25000
|
||||
---- GSROTM 56 90.00000 11.25000 117.00000 101.25000 26.99999 101.25000
|
||||
---- GSROTM 57 90.00000 213.75000 62.00000 123.75000 152.00000 123.75000
|
||||
---- GSROTM 58 90.00000 213.75000 90.00000 123.75000 179.99998 -11.25000
|
||||
---- GSROTM 59 90.00000 33.75000 90.00000 123.75000 0.00001 78.75000
|
||||
---- GSROTM 60 90.00000 33.75000 117.00000 123.75000 26.99999 123.75000
|
||||
---- GSROTM 61 90.00000 236.25000 62.00000 146.25000 152.00000 146.24998
|
||||
---- GSROTM 62 90.00000 236.25000 90.00000 146.25000 179.99998 11.25000
|
||||
---- GSROTM 63 90.00000 56.25000 90.00000 146.25000 0.00001 101.25000
|
||||
---- GSROTM 64 90.00000 56.25000 117.00000 146.25000 26.99999 146.25000
|
||||
---- GSROTM 65 90.00000 258.75000 62.00000 168.75000 152.00000 168.75000
|
||||
---- GSROTM 66 90.00000 258.75000 90.00000 168.75000 180.00000 33.75000
|
||||
---- GSROTM 67 90.00000 78.75000 90.00000 168.75000 0.00000 123.75000
|
||||
---- GSROTM 68 90.00000 78.75000 117.00000 168.75000 26.99999 168.75000
|
||||
---- GSROTM 69 90.00000 281.25000 62.00000 191.25000 152.00000 -168.75000
|
||||
---- GSROTM 70 90.00000 281.25000 90.00000 191.25000 179.99998 56.25000
|
||||
---- GSROTM 71 90.00000 101.25000 90.00000 191.25000 0.00001 146.25000
|
||||
---- GSROTM 72 90.00000 101.25000 117.00000 191.25000 26.99999 -168.75000
|
||||
---- GSROTM 73 90.00000 303.75000 62.00000 213.75000 152.00000 -146.25002
|
||||
---- GSROTM 74 90.00000 303.75000 90.00000 213.75000 179.99998 78.75000
|
||||
---- GSROTM 75 90.00000 123.75000 90.00000 213.75000 0.00001 168.75000
|
||||
---- GSROTM 76 90.00000 123.75000 117.00000 213.75000 26.99999 -146.25002
|
||||
---- GSROTM 77 90.00000 326.25000 62.00000 236.25000 152.00000 -123.75001
|
||||
---- GSROTM 78 90.00000 326.25000 90.00000 236.25000 179.99998 101.24999
|
||||
---- GSROTM 79 90.00000 146.25000 90.00000 236.25000 0.00002 -168.75000
|
||||
---- GSROTM 80 90.00000 146.25000 117.00000 236.25000 26.99999 -123.75000
|
||||
---- GSROTM 81 90.00000 348.75000 62.00000 258.75000 152.00000 -101.25000
|
||||
---- GSROTM 82 90.00000 348.75000 90.00000 258.75000 179.99998 123.75000
|
||||
---- GSROTM 83 90.00000 168.75000 90.00000 258.75000 0.00001 -146.25000
|
||||
---- GSROTM 84 90.00000 168.75000 117.00000 258.75000 26.99999 -101.25001
|
||||
---- GSROTM 85 90.00000 371.25000 62.00000 281.25000 152.00000 -78.75002
|
||||
---- GSROTM 86 90.00000 371.25000 90.00000 281.25000 179.99998 146.25000
|
||||
---- GSROTM 87 90.00000 191.25000 90.00000 281.25000 0.00001 -123.75000
|
||||
---- GSROTM 88 90.00000 191.25000 117.00000 281.25000 26.99999 -78.75001
|
||||
---- GSROTM 89 90.00000 393.75000 62.00000 303.75000 152.00000 -56.25001
|
||||
---- GSROTM 90 90.00000 393.75000 90.00000 303.75000 179.99998 168.75000
|
||||
---- GSROTM 91 90.00000 213.75000 90.00000 303.75000 0.00002 -101.25001
|
||||
---- GSROTM 92 90.00000 213.75000 117.00000 303.75000 26.99999 -56.25000
|
||||
---- GSROTM 93 90.00000 416.25000 62.00000 326.25000 152.00000 -33.75000
|
||||
---- GSROTM 94 90.00000 416.25000 90.00000 326.25000 179.99998 -168.75000
|
||||
---- GSROTM 95 90.00000 236.25000 90.00000 326.25000 0.00001 -78.75001
|
||||
---- GSROTM 96 90.00000 236.25000 117.00000 326.25000 26.99999 -33.75002
|
||||
---- GSROTM 97 90.00000 438.75000 62.00000 348.75000 152.00000 -11.25002
|
||||
---- GSROTM 98 90.00000 438.75000 90.00000 348.75000 179.99998 -146.25000
|
||||
---- GSROTM 99 90.00000 258.75000 90.00000 348.75000 0.00001 -56.25000
|
||||
---- GSROTM 100 90.00000 258.75000 117.00000 348.75000 26.99999 -11.25001
|
||||
---- GSROTM 101 90.00000 90.00000 66.00000 0.00000 156.00000 0.00000
|
||||
---- GSROTM 102 90.00000 90.00000 90.00000 0.00000 180.00000 -135.00000
|
||||
---- GSROTM 103 90.00000 -90.00000 90.00000 0.00000 0.00000 -45.00000
|
||||
---- GSROTM 104 90.00000 -90.00000 111.00000 0.00000 21.00000 -0.00001
|
||||
---- GSROTM 105 90.00000 110.00000 66.00000 20.00000 156.00000 19.99999
|
||||
---- GSROTM 106 90.00000 110.00000 90.00000 20.00000 180.00000 -115.00000
|
||||
---- GSROTM 107 90.00000 -70.00000 90.00000 20.00000 0.00000 -25.00000
|
||||
---- GSROTM 108 90.00000 -70.00000 111.00000 20.00000 21.00000 19.99999
|
||||
---- GSROTM 109 90.00000 130.00000 66.00000 40.00000 156.00000 40.00000
|
||||
---- GSROTM 110 90.00000 130.00000 90.00000 40.00000 180.00000 -95.00000
|
||||
---- GSROTM 111 90.00000 -50.00000 90.00000 40.00000 0.00000 -5.00000
|
||||
---- GSROTM 112 90.00000 -50.00000 111.00000 40.00000 21.00000 39.99999
|
||||
---- GSROTM 113 90.00000 150.00000 66.00000 60.00000 156.00000 59.99999
|
||||
---- GSROTM 114 90.00000 150.00000 90.00000 60.00000 180.00000 -75.00000
|
||||
---- GSROTM 115 90.00000 -30.00000 90.00000 60.00000 0.00000 15.00000
|
||||
---- GSROTM 116 90.00000 -30.00000 111.00000 60.00000 21.00000 59.99999
|
||||
---- GSROTM 117 90.00000 170.00000 66.00000 80.00000 156.00000 79.99999
|
||||
---- GSROTM 118 90.00000 170.00000 90.00000 80.00000 180.00000 -55.00000
|
||||
---- GSROTM 119 90.00000 -10.00000 90.00000 80.00000 0.00000 35.00000
|
||||
---- GSROTM 120 90.00000 -10.00000 111.00000 80.00000 21.00000 79.99999
|
||||
---- GSROTM 121 90.00000 190.00000 66.00000 100.00000 156.00000 100.00000
|
||||
---- GSROTM 122 90.00000 190.00000 90.00000 100.00000 180.00000 -35.00000
|
||||
---- GSROTM 123 90.00000 10.00000 90.00000 100.00000 0.00000 55.00000
|
||||
---- GSROTM 124 90.00000 10.00000 111.00000 100.00000 21.00000 99.99999
|
||||
---- GSROTM 125 90.00000 210.00000 66.00000 120.00000 156.00000 119.99999
|
||||
---- GSROTM 126 90.00000 210.00000 90.00000 120.00000 180.00000 -15.00000
|
||||
---- GSROTM 127 90.00000 30.00000 90.00000 120.00000 0.00000 75.00000
|
||||
---- GSROTM 128 90.00000 30.00000 111.00000 120.00000 21.00000 119.99999
|
||||
---- GSROTM 129 90.00000 230.00000 66.00000 140.00000 156.00000 140.00000
|
||||
---- GSROTM 130 90.00000 230.00000 90.00000 140.00000 179.99998 5.00000
|
||||
---- GSROTM 131 90.00000 50.00000 90.00000 140.00000 0.00000 95.00000
|
||||
---- GSROTM 132 90.00000 50.00000 111.00000 140.00000 21.00000 140.00000
|
||||
---- GSROTM 133 90.00000 250.00000 66.00000 160.00000 156.00000 160.00000
|
||||
---- GSROTM 134 90.00000 250.00000 90.00000 160.00000 179.99998 25.00000
|
||||
---- GSROTM 135 90.00000 70.00000 90.00000 160.00000 0.00001 115.00000
|
||||
---- GSROTM 136 90.00000 70.00000 111.00000 160.00000 21.00000 160.00000
|
||||
---- GSROTM 137 90.00000 270.00000 66.00000 180.00000 156.00000 180.00000
|
||||
---- GSROTM 138 90.00000 270.00000 90.00000 180.00000 180.00000 45.00000
|
||||
---- GSROTM 139 90.00000 90.00000 90.00000 180.00000 0.00000 135.00000
|
||||
---- GSROTM 140 90.00000 90.00000 111.00000 180.00000 21.00000 180.00000
|
||||
---- GSROTM 141 90.00000 290.00000 66.00000 200.00000 156.00000 -160.00002
|
||||
---- GSROTM 142 90.00000 290.00000 90.00000 200.00000 180.00000 65.00000
|
||||
---- GSROTM 143 90.00000 110.00000 90.00000 200.00000 0.00000 155.00000
|
||||
---- GSROTM 144 90.00000 110.00000 111.00000 200.00000 21.00000 -160.00002
|
||||
---- GSROTM 145 90.00000 310.00000 66.00000 220.00000 156.00000 -140.00002
|
||||
---- GSROTM 146 90.00000 310.00000 90.00000 220.00000 180.00000 84.99999
|
||||
---- GSROTM 147 90.00000 130.00000 90.00000 220.00000 0.00001 175.00000
|
||||
---- GSROTM 148 90.00000 130.00000 111.00000 220.00000 21.00000 -140.00000
|
||||
---- GSROTM 149 90.00000 330.00000 66.00000 240.00000 156.00000 -120.00002
|
||||
---- GSROTM 150 90.00000 330.00000 90.00000 240.00000 179.99998 105.00000
|
||||
---- GSROTM 151 90.00000 150.00000 90.00000 240.00000 0.00001 -165.00000
|
||||
---- GSROTM 152 90.00000 150.00000 111.00000 240.00000 21.00000 -120.00001
|
||||
---- GSROTM 153 90.00000 350.00000 66.00000 260.00000 156.00000 -100.00002
|
||||
---- GSROTM 154 90.00000 350.00000 90.00000 260.00000 179.99998 124.99999
|
||||
---- GSROTM 155 90.00000 170.00000 90.00000 260.00000 0.00001 -145.00000
|
||||
---- GSROTM 156 90.00000 170.00000 111.00000 260.00000 21.00000 -100.00002
|
||||
---- GSROTM 157 90.00000 370.00000 66.00000 280.00000 156.00000 -80.00000
|
||||
---- GSROTM 158 90.00000 370.00000 90.00000 280.00000 179.99998 145.00000
|
||||
---- GSROTM 159 90.00000 190.00000 90.00000 280.00000 0.00001 -125.00000
|
||||
---- GSROTM 160 90.00000 190.00000 111.00000 280.00000 21.00000 -80.00001
|
||||
---- GSROTM 161 90.00000 390.00000 66.00000 300.00000 156.00000 -60.00000
|
||||
---- GSROTM 162 90.00000 390.00000 90.00000 300.00000 179.99998 165.00000
|
||||
---- GSROTM 163 90.00000 210.00000 90.00000 300.00000 0.00001 -105.00001
|
||||
---- GSROTM 164 90.00000 210.00000 111.00000 300.00000 21.00000 -60.00001
|
||||
---- GSROTM 165 90.00000 410.00000 66.00000 320.00000 156.00000 -40.00001
|
||||
---- GSROTM 166 90.00000 410.00000 90.00000 320.00000 179.99998 -175.00000
|
||||
---- GSROTM 167 90.00000 230.00000 90.00000 320.00000 0.00002 -85.00000
|
||||
---- GSROTM 168 90.00000 230.00000 111.00000 320.00000 21.00000 -40.00000
|
||||
---- GSROTM 169 90.00000 430.00000 66.00000 340.00000 156.00000 -20.00001
|
||||
---- GSROTM 170 90.00000 430.00000 90.00000 340.00000 179.99998 -155.00002
|
||||
---- GSROTM 171 90.00000 250.00000 90.00000 340.00000 0.00002 -65.00001
|
||||
---- GSROTM 172 90.00000 250.00000 111.00000 340.00000 21.00000 -20.00000
|
||||
---- GSVOLU SSA1 TRD1 3 4 0.20650001E+01 0.20650001E+01 0.15000000E-01 0.21199999E+01
|
||||
---- GSVOLU SSA2 TRD1 3 4 0.24707501E+01 0.24707501E+01 0.15000000E-01 0.22700000E+01
|
||||
---- GSVOLU SSA3 TRD1 3 4 0.35734999E+01 0.35734999E+01 0.15000000E-01 0.21949999E+01
|
||||
---- GSVOLU SSA6 TRD1 3 4 0.21650000E+01 0.26400001E+01 0.15000000E-01 0.33985000E+01
|
||||
---- GSVOLU SSA4 TRD1 3 4 0.26250000E+01 0.26250000E+01 0.15000000E-01 0.33775001E+01
|
||||
---- GSVOLU SSA5 TRD1 3 4 0.26250000E+01 0.26250000E+01 0.15000000E-01 0.26949999E+01
|
||||
---- GSVOLU SSI1 TRD1 4 4 0.20650001E+01 0.20650001E+01 0.16700000E-01 0.21199999E+01
|
||||
---- GSVOLU SSI2 TRD1 4 4 0.24707501E+01 0.24707501E+01 0.16700000E-01 0.22700000E+01
|
||||
---- GSVOLU SSI3 TRD1 4 4 0.35734999E+01 0.35734999E+01 0.16700000E-01 0.21949999E+01
|
||||
---- GSVOLU SSI6 TRD1 4 4 0.21650000E+01 0.26400001E+01 0.16700000E-01 0.33985000E+01
|
||||
---- GSVOLU SSI4 TRD1 4 4 0.26250000E+01 0.26250000E+01 0.16700000E-01 0.33775001E+01
|
||||
---- GSVOLU SSI5 TRD1 4 4 0.26250000E+01 0.26250000E+01 0.16700000E-01 0.26949999E+01
|
||||
---- GSVOLU SSK1 TRD1 5 4 0.20650001E+01 0.20650001E+01 0.17000000E-02 0.21199999E+01
|
||||
---- GSVOLU SSK2 TRD1 5 4 0.24707501E+01 0.24707501E+01 0.17000000E-02 0.22700000E+01
|
||||
---- GSVOLU SSK3 TRD1 5 4 0.35734999E+01 0.35734999E+01 0.17000000E-02 0.21949999E+01
|
||||
---- GSVOLU SSK6 TRD1 5 4 0.21650000E+01 0.26400001E+01 0.17000000E-02 0.33985000E+01
|
||||
---- GSVOLU SSK4 TRD1 5 4 0.26250000E+01 0.26250000E+01 0.17000000E-02 0.33775001E+01
|
||||
---- GSVOLU SSK5 TRD1 5 4 0.26250000E+01 0.26250000E+01 0.17000000E-02 0.26949999E+01
|
||||
---- GSVOLU SSVD TUBE 1 3 0.00000000E+00 0.31000000E+04 0.18000000E+05
|
||||
---- GSPOS SSI1 1 SSVD 0.33182940E+01 -0.55969357E-01 0.90451250E+01 1 ONLY
|
||||
---- GSPOS SSI1 2 SSVD 0.33182940E+01 -0.55969357E-01 0.47993755E+01 1 ONLY
|
||||
---- GSPOS SSI1 3 SSVD 0.33182940E+01 -0.55969357E-01 0.55362511E+00 2 ONLY
|
||||
---- GSPOS SSI1 4 SSVD 0.33182940E+01 -0.55969357E-01 -0.36921253E+01 2 ONLY
|
||||
---- GSPOS SSI1 5 SSVD 0.17076176E+01 0.28457422E+01 0.90451250E+01 3 ONLY
|
||||
---- GSPOS SSI1 6 SSVD 0.17076176E+01 0.28457422E+01 0.47993755E+01 3 ONLY
|
||||
---- GSPOS SSI1 7 SSVD 0.17076176E+01 0.28457422E+01 0.55362511E+00 4 ONLY
|
||||
---- GSPOS SSI1 8 SSVD 0.17076176E+01 0.28457422E+01 -0.36921253E+01 4 ONLY
|
||||
---- GSPOS SSI1 9 SSVD -0.16106765E+01 0.29017115E+01 0.90451250E+01 5 ONLY
|
||||
---- GSPOS SSI1 10 SSVD -0.16106765E+01 0.29017115E+01 0.47993755E+01 5 ONLY
|
||||
---- GSPOS SSI1 11 SSVD -0.16106765E+01 0.29017115E+01 0.55362511E+00 6 ONLY
|
||||
---- GSPOS SSI1 12 SSVD -0.16106765E+01 0.29017115E+01 -0.36921253E+01 6 ONLY
|
||||
---- GSPOS SSI1 13 SSVD -0.33182938E+01 0.55969715E-01 0.90451250E+01 7 ONLY
|
||||
---- GSPOS SSI1 14 SSVD -0.33182938E+01 0.55969715E-01 0.47993755E+01 7 ONLY
|
||||
---- GSPOS SSI1 15 SSVD -0.33182938E+01 0.55969715E-01 0.55362511E+00 8 ONLY
|
||||
---- GSPOS SSI1 16 SSVD -0.33182938E+01 0.55969715E-01 -0.36921253E+01 8 ONLY
|
||||
---- GSPOS SSI1 17 SSVD -0.17076187E+01 -0.28457417E+01 0.90451250E+01 9 ONLY
|
||||
---- GSPOS SSI1 18 SSVD -0.17076187E+01 -0.28457417E+01 0.47993755E+01 9 ONLY
|
||||
---- GSPOS SSI1 19 SSVD -0.17076187E+01 -0.28457417E+01 0.55362511E+00 10 ONLY
|
||||
---- GSPOS SSI1 20 SSVD -0.17076187E+01 -0.28457417E+01 -0.36921253E+01 10 ONLY
|
||||
---- GSPOS SSI1 21 SSVD 0.16106759E+01 -0.29017117E+01 0.90451250E+01 11 ONLY
|
||||
---- GSPOS SSI1 22 SSVD 0.16106759E+01 -0.29017117E+01 0.47993755E+01 11 ONLY
|
||||
---- GSPOS SSI1 23 SSVD 0.16106759E+01 -0.29017117E+01 0.55362511E+00 12 ONLY
|
||||
---- GSPOS SSI1 24 SSVD 0.16106759E+01 -0.29017117E+01 -0.36921253E+01 12 ONLY
|
||||
---- GSPOS SSI2 1 SSVD 0.40317507E+01 -0.16531247E+00 0.88951254E+01 13 ONLY
|
||||
---- GSPOS SSI2 2 SSVD 0.40317507E+01 -0.16531247E+00 0.43493752E+01 13 ONLY
|
||||
---- GSPOS SSI2 3 SSVD 0.40317507E+01 -0.16531247E+00 -0.19637394E+00 14 ONLY
|
||||
---- GSPOS SSI2 4 SSVD 0.40317507E+01 -0.16531247E+00 -0.47421236E+01 14 ONLY
|
||||
---- GSPOS SSI2 5 SSVD 0.21590397E+01 0.34089422E+01 0.88951254E+01 15 ONLY
|
||||
---- GSPOS SSI2 6 SSVD 0.21590397E+01 0.34089422E+01 0.43493752E+01 15 ONLY
|
||||
---- GSPOS SSI2 7 SSVD 0.21590397E+01 0.34089422E+01 -0.19637394E+00 16 ONLY
|
||||
---- GSPOS SSI2 8 SSVD 0.21590397E+01 0.34089422E+01 -0.47421236E+01 16 ONLY
|
||||
---- GSPOS SSI2 9 SSVD -0.18727109E+01 0.35742543E+01 0.88951254E+01 17 ONLY
|
||||
---- GSPOS SSI2 10 SSVD -0.18727109E+01 0.35742543E+01 0.43493752E+01 17 ONLY
|
||||
---- GSPOS SSI2 11 SSVD -0.18727109E+01 0.35742543E+01 -0.19637394E+00 18 ONLY
|
||||
---- GSPOS SSI2 12 SSVD -0.18727109E+01 0.35742543E+01 -0.47421236E+01 18 ONLY
|
||||
---- GSPOS SSI2 13 SSVD -0.40317502E+01 0.16531292E+00 0.88951254E+01 19 ONLY
|
||||
---- GSPOS SSI2 14 SSVD -0.40317502E+01 0.16531292E+00 0.43493752E+01 19 ONLY
|
||||
---- GSPOS SSI2 15 SSVD -0.40317502E+01 0.16531292E+00 -0.19637394E+00 20 ONLY
|
||||
---- GSPOS SSI2 16 SSVD -0.40317502E+01 0.16531292E+00 -0.47421236E+01 20 ONLY
|
||||
---- GSPOS SSI2 17 SSVD -0.21590409E+01 -0.34089413E+01 0.88951254E+01 21 ONLY
|
||||
---- GSPOS SSI2 18 SSVD -0.21590409E+01 -0.34089413E+01 0.43493752E+01 21 ONLY
|
||||
---- GSPOS SSI2 19 SSVD -0.21590409E+01 -0.34089413E+01 -0.19637394E+00 22 ONLY
|
||||
---- GSPOS SSI2 20 SSVD -0.21590409E+01 -0.34089413E+01 -0.47421236E+01 22 ONLY
|
||||
---- GSPOS SSI2 21 SSVD 0.18727103E+01 -0.35742548E+01 0.88951254E+01 23 ONLY
|
||||
---- GSPOS SSI2 22 SSVD 0.18727103E+01 -0.35742548E+01 0.43493752E+01 23 ONLY
|
||||
---- GSPOS SSI2 23 SSVD 0.18727103E+01 -0.35742548E+01 -0.19637394E+00 24 ONLY
|
||||
---- GSPOS SSI2 24 SSVD 0.18727103E+01 -0.35742548E+01 -0.47421236E+01 24 ONLY
|
||||
---- GSPOS SSI3 1 SSVD 0.59426103E+01 -0.19059682E+00 0.14064917E+02 25 ONLY
|
||||
---- GSPOS SSI3 2 SSVD 0.59426103E+01 -0.19059682E+00 0.96687498E+01 25 ONLY
|
||||
---- GSPOS SSI3 3 SSVD 0.59426103E+01 -0.19059682E+00 0.52725830E+01 25 ONLY
|
||||
---- GSPOS SSI3 4 SSVD 0.59426103E+01 -0.19059682E+00 0.87641716E+00 26 ONLY
|
||||
---- GSPOS SSI3 5 SSVD 0.59426103E+01 -0.19059682E+00 -0.35197506E+01 26 ONLY
|
||||
---- GSPOS SSI3 6 SSVD 0.59426103E+01 -0.19059682E+00 -0.79159184E+01 26 ONLY
|
||||
---- GSPOS SSI3 7 SSVD 0.31363666E+01 0.50511532E+01 0.14064917E+02 27 ONLY
|
||||
---- GSPOS SSI3 8 SSVD 0.31363666E+01 0.50511532E+01 0.96687498E+01 27 ONLY
|
||||
---- GSPOS SSI3 9 SSVD 0.31363666E+01 0.50511532E+01 0.52725830E+01 27 ONLY
|
||||
---- GSPOS SSI3 10 SSVD 0.31363666E+01 0.50511532E+01 0.87641716E+00 28 ONLY
|
||||
---- GSPOS SSI3 11 SSVD 0.31363666E+01 0.50511532E+01 -0.35197506E+01 28 ONLY
|
||||
---- GSPOS SSI3 12 SSVD 0.31363666E+01 0.50511532E+01 -0.79159184E+01 28 ONLY
|
||||
---- GSPOS SSI3 13 SSVD -0.28062441E+01 0.52417498E+01 0.14064917E+02 29 ONLY
|
||||
---- GSPOS SSI3 14 SSVD -0.28062441E+01 0.52417498E+01 0.96687498E+01 29 ONLY
|
||||
---- GSPOS SSI3 15 SSVD -0.28062441E+01 0.52417498E+01 0.52725830E+01 29 ONLY
|
||||
---- GSPOS SSI3 16 SSVD -0.28062441E+01 0.52417498E+01 0.87641716E+00 30 ONLY
|
||||
---- GSPOS SSI3 17 SSVD -0.28062441E+01 0.52417498E+01 -0.35197506E+01 30 ONLY
|
||||
---- GSPOS SSI3 18 SSVD -0.28062441E+01 0.52417498E+01 -0.79159184E+01 30 ONLY
|
||||
---- GSPOS SSI3 19 SSVD -0.59426103E+01 0.19059747E+00 0.14064917E+02 31 ONLY
|
||||
---- GSPOS SSI3 20 SSVD -0.59426103E+01 0.19059747E+00 0.96687498E+01 31 ONLY
|
||||
---- GSPOS SSI3 21 SSVD -0.59426103E+01 0.19059747E+00 0.52725830E+01 31 ONLY
|
||||
---- GSPOS SSI3 22 SSVD -0.59426103E+01 0.19059747E+00 0.87641716E+00 32 ONLY
|
||||
---- GSPOS SSI3 23 SSVD -0.59426103E+01 0.19059747E+00 -0.35197506E+01 32 ONLY
|
||||
---- GSPOS SSI3 24 SSVD -0.59426103E+01 0.19059747E+00 -0.79159184E+01 32 ONLY
|
||||
---- GSPOS SSI3 25 SSVD -0.31363683E+01 -0.50511522E+01 0.14064917E+02 33 ONLY
|
||||
---- GSPOS SSI3 26 SSVD -0.31363683E+01 -0.50511522E+01 0.96687498E+01 33 ONLY
|
||||
---- GSPOS SSI3 27 SSVD -0.31363683E+01 -0.50511522E+01 0.52725830E+01 33 ONLY
|
||||
---- GSPOS SSI3 28 SSVD -0.31363683E+01 -0.50511522E+01 0.87641716E+00 34 ONLY
|
||||
---- GSPOS SSI3 29 SSVD -0.31363683E+01 -0.50511522E+01 -0.35197506E+01 34 ONLY
|
||||
---- GSPOS SSI3 30 SSVD -0.31363683E+01 -0.50511522E+01 -0.79159184E+01 34 ONLY
|
||||
---- GSPOS SSI3 31 SSVD 0.28062432E+01 -0.52417507E+01 0.14064917E+02 35 ONLY
|
||||
---- GSPOS SSI3 32 SSVD 0.28062432E+01 -0.52417507E+01 0.96687498E+01 35 ONLY
|
||||
---- GSPOS SSI3 33 SSVD 0.28062432E+01 -0.52417507E+01 0.52725830E+01 35 ONLY
|
||||
---- GSPOS SSI3 34 SSVD 0.28062432E+01 -0.52417507E+01 0.87641716E+00 36 ONLY
|
||||
---- GSPOS SSI3 35 SSVD 0.28062432E+01 -0.52417507E+01 -0.35197506E+01 36 ONLY
|
||||
---- GSPOS SSI3 36 SSVD 0.28062432E+01 -0.52417507E+01 -0.79159184E+01 36 ONLY
|
||||
---- GSPOS SSI6 1 SSVD 0.10200806E+02 0.20290666E+01 0.21509911E+02 37 ONLY
|
||||
---- GSPOS SSI4 1 SSVD 0.11767756E+02 0.23407521E+01 0.15121400E+02 38 ONLY
|
||||
---- GSPOS SSI5 1 SSVD 0.11767756E+02 0.23407521E+01 0.90386992E+01 38 ONLY
|
||||
---- GSPOS SSI5 2 SSVD 0.11767756E+02 0.23407521E+01 0.36384993E+01 39 ONLY
|
||||
---- GSPOS SSI5 3 SSVD 0.11767756E+02 0.23407521E+01 -0.17617016E+01 39 ONLY
|
||||
---- GSPOS SSI5 4 SSVD 0.11767756E+02 0.23407521E+01 -0.71619015E+01 39 ONLY
|
||||
---- GSPOS SSI6 2 SSVD 0.10252471E+02 0.20393434E+01 -0.12895312E+02 40 ONLY
|
||||
---- GSPOS SSI6 3 SSVD 0.89804134E+01 0.60005207E+01 0.22413912E+02 41 ONLY
|
||||
---- GSPOS SSI4 2 SSVD 0.10308809E+02 0.68881259E+01 0.16025400E+02 42 ONLY
|
||||
---- GSPOS SSI4 3 SSVD 0.10308809E+02 0.68881259E+01 0.92602005E+01 42 ONLY
|
||||
---- GSPOS SSI5 5 SSVD 0.10308809E+02 0.68881259E+01 0.31774998E+01 43 ONLY
|
||||
---- GSPOS SSI5 6 SSVD 0.10308809E+02 0.68881259E+01 -0.22227001E+01 43 ONLY
|
||||
---- GSPOS SSI5 7 SSVD 0.10308809E+02 0.68881259E+01 -0.76229000E+01 43 ONLY
|
||||
---- GSPOS SSI6 4 SSVD 0.90242128E+01 0.60297866E+01 -0.13356313E+02 44 ONLY
|
||||
---- GSPOS SSI6 5 SSVD 0.57782927E+01 0.86478262E+01 0.21509911E+02 45 ONLY
|
||||
---- GSPOS SSI4 4 SSVD 0.66658983E+01 0.99762211E+01 0.15121400E+02 46 ONLY
|
||||
---- GSPOS SSI5 8 SSVD 0.66658983E+01 0.99762211E+01 0.90386992E+01 46 ONLY
|
||||
---- GSPOS SSI5 9 SSVD 0.66658983E+01 0.99762211E+01 0.36384993E+01 47 ONLY
|
||||
---- GSPOS SSI5 10 SSVD 0.66658983E+01 0.99762211E+01 -0.17617016E+01 47 ONLY
|
||||
---- GSPOS SSI5 11 SSVD 0.66658983E+01 0.99762211E+01 -0.71619015E+01 47 ONLY
|
||||
---- GSPOS SSI6 6 SSVD 0.58075585E+01 0.86916256E+01 -0.12895312E+02 48 ONLY
|
||||
---- GSPOS SSI6 7 SSVD 0.21071029E+01 0.10593120E+02 0.22413912E+02 49 ONLY
|
||||
---- GSPOS SSI4 5 SSVD 0.24187887E+01 0.12160069E+02 0.16025400E+02 50 ONLY
|
||||
---- GSPOS SSI4 6 SSVD 0.24187887E+01 0.12160069E+02 0.92602005E+01 50 ONLY
|
||||
---- GSPOS SSI5 12 SSVD 0.24187887E+01 0.12160069E+02 0.31774998E+01 51 ONLY
|
||||
---- GSPOS SSI5 13 SSVD 0.24187887E+01 0.12160069E+02 -0.22227001E+01 51 ONLY
|
||||
---- GSPOS SSI5 14 SSVD 0.24187887E+01 0.12160069E+02 -0.76229000E+01 51 ONLY
|
||||
---- GSPOS SSI6 8 SSVD 0.21173797E+01 0.10644785E+02 -0.13356313E+02 52 ONLY
|
||||
---- GSPOS SSI6 9 SSVD -0.20290666E+01 0.10200806E+02 0.21509911E+02 53 ONLY
|
||||
---- GSPOS SSI4 7 SSVD -0.23407521E+01 0.11767756E+02 0.15121400E+02 54 ONLY
|
||||
---- GSPOS SSI5 15 SSVD -0.23407521E+01 0.11767756E+02 0.90386992E+01 54 ONLY
|
||||
---- GSPOS SSI5 16 SSVD -0.23407521E+01 0.11767756E+02 0.36384993E+01 55 ONLY
|
||||
---- GSPOS SSI5 17 SSVD -0.23407521E+01 0.11767756E+02 -0.17617016E+01 55 ONLY
|
||||
---- GSPOS SSI5 18 SSVD -0.23407521E+01 0.11767756E+02 -0.71619015E+01 55 ONLY
|
||||
---- GSPOS SSI6 10 SSVD -0.20393434E+01 0.10252471E+02 -0.12895312E+02 56 ONLY
|
||||
---- GSPOS SSI6 11 SSVD -0.60005198E+01 0.89804144E+01 0.22413912E+02 57 ONLY
|
||||
---- GSPOS SSI4 8 SSVD -0.68881254E+01 0.10308809E+02 0.16025400E+02 58 ONLY
|
||||
---- GSPOS SSI4 9 SSVD -0.68881254E+01 0.10308809E+02 0.92602005E+01 58 ONLY
|
||||
---- GSPOS SSI5 19 SSVD -0.68881254E+01 0.10308809E+02 0.31774998E+01 59 ONLY
|
||||
---- GSPOS SSI5 20 SSVD -0.68881254E+01 0.10308809E+02 -0.22227001E+01 59 ONLY
|
||||
---- GSPOS SSI5 21 SSVD -0.68881254E+01 0.10308809E+02 -0.76229000E+01 59 ONLY
|
||||
---- GSPOS SSI6 12 SSVD -0.60297856E+01 0.90242138E+01 -0.13356313E+02 60 ONLY
|
||||
---- GSPOS SSI6 13 SSVD -0.86478262E+01 0.57782922E+01 0.21509911E+02 61 ONLY
|
||||
---- GSPOS SSI4 10 SSVD -0.99762220E+01 0.66658974E+01 0.15121400E+02 62 ONLY
|
||||
---- GSPOS SSI5 22 SSVD -0.99762220E+01 0.66658974E+01 0.90386992E+01 62 ONLY
|
||||
---- GSPOS SSI5 23 SSVD -0.99762220E+01 0.66658974E+01 0.36384993E+01 63 ONLY
|
||||
---- GSPOS SSI5 24 SSVD -0.99762220E+01 0.66658974E+01 -0.17617016E+01 63 ONLY
|
||||
---- GSPOS SSI5 25 SSVD -0.99762220E+01 0.66658974E+01 -0.71619015E+01 63 ONLY
|
||||
---- GSPOS SSI6 14 SSVD -0.86916256E+01 0.58075581E+01 -0.12895312E+02 64 ONLY
|
||||
---- GSPOS SSI6 15 SSVD -0.10593121E+02 0.21071024E+01 0.22413912E+02 65 ONLY
|
||||
---- GSPOS SSI4 11 SSVD -0.12160069E+02 0.24187880E+01 0.16025400E+02 66 ONLY
|
||||
---- GSPOS SSI4 12 SSVD -0.12160069E+02 0.24187880E+01 0.92602005E+01 66 ONLY
|
||||
---- GSPOS SSI5 26 SSVD -0.12160069E+02 0.24187880E+01 0.31774998E+01 67 ONLY
|
||||
---- GSPOS SSI5 27 SSVD -0.12160069E+02 0.24187880E+01 -0.22227001E+01 67 ONLY
|
||||
---- GSPOS SSI5 28 SSVD -0.12160069E+02 0.24187880E+01 -0.76229000E+01 67 ONLY
|
||||
---- GSPOS SSI6 16 SSVD -0.10644785E+02 0.21173792E+01 -0.13356313E+02 68 ONLY
|
||||
---- GSPOS SSI6 17 SSVD -0.10200807E+02 -0.20290658E+01 0.21509911E+02 69 ONLY
|
||||
---- GSPOS SSI4 13 SSVD -0.11767756E+02 -0.23407512E+01 0.15121400E+02 70 ONLY
|
||||
---- GSPOS SSI5 29 SSVD -0.11767756E+02 -0.23407512E+01 0.90386992E+01 70 ONLY
|
||||
---- GSPOS SSI5 30 SSVD -0.11767756E+02 -0.23407512E+01 0.36384993E+01 71 ONLY
|
||||
---- GSPOS SSI5 31 SSVD -0.11767756E+02 -0.23407512E+01 -0.17617016E+01 71 ONLY
|
||||
---- GSPOS SSI5 32 SSVD -0.11767756E+02 -0.23407512E+01 -0.71619015E+01 71 ONLY
|
||||
---- GSPOS SSI6 18 SSVD -0.10252472E+02 -0.20393426E+01 -0.12895312E+02 72 ONLY
|
||||
---- GSPOS SSI6 19 SSVD -0.89804125E+01 -0.60005212E+01 0.22413912E+02 73 ONLY
|
||||
---- GSPOS SSI4 14 SSVD -0.10308808E+02 -0.68881269E+01 0.16025400E+02 74 ONLY
|
||||
---- GSPOS SSI4 15 SSVD -0.10308808E+02 -0.68881269E+01 0.92602005E+01 74 ONLY
|
||||
---- GSPOS SSI5 33 SSVD -0.10308808E+02 -0.68881269E+01 0.31774998E+01 75 ONLY
|
||||
---- GSPOS SSI5 34 SSVD -0.10308808E+02 -0.68881269E+01 -0.22227001E+01 75 ONLY
|
||||
---- GSPOS SSI5 35 SSVD -0.10308808E+02 -0.68881269E+01 -0.76229000E+01 75 ONLY
|
||||
---- GSPOS SSI6 20 SSVD -0.90242119E+01 -0.60297871E+01 -0.13356313E+02 76 ONLY
|
||||
---- GSPOS SSI6 21 SSVD -0.57782946E+01 -0.86478243E+01 0.21509911E+02 77 ONLY
|
||||
---- GSPOS SSI4 16 SSVD -0.66659002E+01 -0.99762201E+01 0.15121400E+02 78 ONLY
|
||||
---- GSPOS SSI5 36 SSVD -0.66659002E+01 -0.99762201E+01 0.90386992E+01 78 ONLY
|
||||
---- GSPOS SSI5 37 SSVD -0.66659002E+01 -0.99762201E+01 0.36384993E+01 79 ONLY
|
||||
---- GSPOS SSI5 38 SSVD -0.66659002E+01 -0.99762201E+01 -0.17617016E+01 79 ONLY
|
||||
---- GSPOS SSI5 39 SSVD -0.66659002E+01 -0.99762201E+01 -0.71619015E+01 79 ONLY
|
||||
---- GSPOS SSI6 22 SSVD -0.58075604E+01 -0.86916237E+01 -0.12895312E+02 80 ONLY
|
||||
---- GSPOS SSI6 23 SSVD -0.21071033E+01 -0.10593120E+02 0.22413912E+02 81 ONLY
|
||||
---- GSPOS SSI4 17 SSVD -0.24187889E+01 -0.12160069E+02 0.16025400E+02 82 ONLY
|
||||
---- GSPOS SSI4 18 SSVD -0.24187889E+01 -0.12160069E+02 0.92602005E+01 82 ONLY
|
||||
---- GSPOS SSI5 40 SSVD -0.24187889E+01 -0.12160069E+02 0.31774998E+01 83 ONLY
|
||||
---- GSPOS SSI5 41 SSVD -0.24187889E+01 -0.12160069E+02 -0.22227001E+01 83 ONLY
|
||||
---- GSPOS SSI5 42 SSVD -0.24187889E+01 -0.12160069E+02 -0.76229000E+01 83 ONLY
|
||||
---- GSPOS SSI6 24 SSVD -0.21173801E+01 -0.10644785E+02 -0.13356313E+02 84 ONLY
|
||||
---- GSPOS SSI6 25 SSVD 0.20290675E+01 -0.10200806E+02 0.21509911E+02 85 ONLY
|
||||
---- GSPOS SSI4 19 SSVD 0.23407533E+01 -0.11767756E+02 0.15121400E+02 86 ONLY
|
||||
---- GSPOS SSI5 43 SSVD 0.23407533E+01 -0.11767756E+02 0.90386992E+01 86 ONLY
|
||||
---- GSPOS SSI5 44 SSVD 0.23407533E+01 -0.11767756E+02 0.36384993E+01 87 ONLY
|
||||
---- GSPOS SSI5 45 SSVD 0.23407533E+01 -0.11767756E+02 -0.17617016E+01 87 ONLY
|
||||
---- GSPOS SSI5 46 SSVD 0.23407533E+01 -0.11767756E+02 -0.71619015E+01 87 ONLY
|
||||
---- GSPOS SSI6 26 SSVD 0.20393443E+01 -0.10252471E+02 -0.12895312E+02 88 ONLY
|
||||
---- GSPOS SSI6 27 SSVD 0.60005188E+01 -0.89804144E+01 0.22413912E+02 89 ONLY
|
||||
---- GSPOS SSI4 20 SSVD 0.68881240E+01 -0.10308810E+02 0.16025400E+02 90 ONLY
|
||||
---- GSPOS SSI4 21 SSVD 0.68881240E+01 -0.10308810E+02 0.92602005E+01 90 ONLY
|
||||
---- GSPOS SSI5 47 SSVD 0.68881240E+01 -0.10308810E+02 0.31774998E+01 91 ONLY
|
||||
---- GSPOS SSI5 48 SSVD 0.68881240E+01 -0.10308810E+02 -0.22227001E+01 91 ONLY
|
||||
---- GSPOS SSI5 49 SSVD 0.68881240E+01 -0.10308810E+02 -0.76229000E+01 91 ONLY
|
||||
---- GSPOS SSI6 28 SSVD 0.60297847E+01 -0.90242138E+01 -0.13356313E+02 92 ONLY
|
||||
---- GSPOS SSI6 29 SSVD 0.86478262E+01 -0.57782931E+01 0.21509911E+02 93 ONLY
|
||||
---- GSPOS SSI4 22 SSVD 0.99762211E+01 -0.66658988E+01 0.15121400E+02 94 ONLY
|
||||
---- GSPOS SSI5 50 SSVD 0.99762211E+01 -0.66658988E+01 0.90386992E+01 94 ONLY
|
||||
---- GSPOS SSI5 51 SSVD 0.99762211E+01 -0.66658988E+01 0.36384993E+01 95 ONLY
|
||||
---- GSPOS SSI5 52 SSVD 0.99762211E+01 -0.66658988E+01 -0.17617016E+01 95 ONLY
|
||||
---- GSPOS SSI5 53 SSVD 0.99762211E+01 -0.66658988E+01 -0.71619015E+01 95 ONLY
|
||||
---- GSPOS SSI6 30 SSVD 0.86916256E+01 -0.58075590E+01 -0.12895312E+02 96 ONLY
|
||||
---- GSPOS SSI6 31 SSVD 0.10593121E+02 -0.21071017E+01 0.22413912E+02 97 ONLY
|
||||
---- GSPOS SSI4 23 SSVD 0.12160069E+02 -0.24187870E+01 0.16025400E+02 98 ONLY
|
||||
---- GSPOS SSI4 24 SSVD 0.12160069E+02 -0.24187870E+01 0.92602005E+01 98 ONLY
|
||||
---- GSPOS SSI5 54 SSVD 0.12160069E+02 -0.24187870E+01 0.31774998E+01 99 ONLY
|
||||
---- GSPOS SSI5 55 SSVD 0.12160069E+02 -0.24187870E+01 -0.22227001E+01 99 ONLY
|
||||
---- GSPOS SSI5 56 SSVD 0.12160069E+02 -0.24187870E+01 -0.76229000E+01 99 ONLY
|
||||
---- GSPOS SSI6 32 SSVD 0.10644785E+02 -0.21173785E+01 -0.13356313E+02 100 ONLY
|
||||
---- GSPOS SSI6 33 SSVD 0.13014118E+02 0.00000000E+00 0.29117945E+02 101 ONLY
|
||||
---- GSPOS SSI4 25 SSVD 0.14398299E+02 0.00000000E+00 0.22625916E+02 102 ONLY
|
||||
---- GSPOS SSI4 26 SSVD 0.14398299E+02 0.00000000E+00 0.15861750E+02 102 ONLY
|
||||
---- GSPOS SSI4 27 SSVD 0.14398299E+02 0.00000000E+00 0.90975819E+01 102 ONLY
|
||||
---- GSPOS SSI4 28 SSVD 0.14398299E+02 0.00000000E+00 0.23334141E+01 103 ONLY
|
||||
---- GSPOS SSI4 29 SSVD 0.14398299E+02 0.00000000E+00 -0.44307537E+01 103 ONLY
|
||||
---- GSPOS SSI4 30 SSVD 0.14398299E+02 0.00000000E+00 -0.11194916E+02 103 ONLY
|
||||
---- GSPOS SSI6 34 SSVD 0.13178707E+02 0.00000000E+00 -0.17755049E+02 104 ONLY
|
||||
---- GSPOS SSI6 35 SSVD 0.11853395E+02 0.43142824E+01 0.28153944E+02 105 ONLY
|
||||
---- GSPOS SSI4 31 SSVD 0.13154099E+02 0.47877002E+01 0.21661917E+02 106 ONLY
|
||||
---- GSPOS SSI4 32 SSVD 0.13154099E+02 0.47877002E+01 0.14897751E+02 106 ONLY
|
||||
---- GSPOS SSI5 57 SSVD 0.13154099E+02 0.47877002E+01 0.88160839E+01 106 ONLY
|
||||
---- GSPOS SSI4 33 SSVD 0.13154099E+02 0.47877002E+01 0.27344170E+01 107 ONLY
|
||||
---- GSPOS SSI4 34 SSVD 0.13154099E+02 0.47877002E+01 -0.40297508E+01 107 ONLY
|
||||
---- GSPOS SSI4 35 SSVD 0.13154099E+02 0.47877002E+01 -0.10793917E+02 107 ONLY
|
||||
---- GSPOS SSI6 36 SSVD 0.12008057E+02 0.43705750E+01 -0.17354050E+02 108 ONLY
|
||||
---- GSPOS SSI6 37 SSVD 0.99693928E+01 0.83653135E+01 0.29117945E+02 109 ONLY
|
||||
---- GSPOS SSI4 36 SSVD 0.11029737E+02 0.92550478E+01 0.22625916E+02 110 ONLY
|
||||
---- GSPOS SSI4 37 SSVD 0.11029737E+02 0.92550478E+01 0.15861750E+02 110 ONLY
|
||||
---- GSPOS SSI4 38 SSVD 0.11029737E+02 0.92550478E+01 0.90975819E+01 110 ONLY
|
||||
---- GSPOS SSI4 39 SSVD 0.11029737E+02 0.92550478E+01 0.23334141E+01 111 ONLY
|
||||
---- GSPOS SSI4 40 SSVD 0.11029737E+02 0.92550478E+01 -0.44307537E+01 111 ONLY
|
||||
---- GSPOS SSI4 41 SSVD 0.11029737E+02 0.92550478E+01 -0.11194916E+02 111 ONLY
|
||||
---- GSPOS SSI6 38 SSVD 0.10095475E+02 0.84711094E+01 -0.17755049E+02 112 ONLY
|
||||
---- GSPOS SSI6 39 SSVD 0.63070588E+01 0.10924148E+02 0.28153944E+02 113 ONLY
|
||||
---- GSPOS SSI4 42 SSVD 0.69991493E+01 0.12122884E+02 0.21661917E+02 114 ONLY
|
||||
---- GSPOS SSI4 43 SSVD 0.69991493E+01 0.12122884E+02 0.14897751E+02 114 ONLY
|
||||
---- GSPOS SSI5 58 SSVD 0.69991493E+01 0.12122884E+02 0.88160839E+01 114 ONLY
|
||||
---- GSPOS SSI4 44 SSVD 0.69991493E+01 0.12122884E+02 0.27344170E+01 115 ONLY
|
||||
---- GSPOS SSI4 45 SSVD 0.69991493E+01 0.12122884E+02 -0.40297508E+01 115 ONLY
|
||||
---- GSPOS SSI4 46 SSVD 0.69991493E+01 0.12122884E+02 -0.10793917E+02 115 ONLY
|
||||
---- GSPOS SSI6 40 SSVD 0.63893533E+01 0.11066686E+02 -0.17354050E+02 116 ONLY
|
||||
---- GSPOS SSI6 41 SSVD 0.22598784E+01 0.12816404E+02 0.29117945E+02 117 ONLY
|
||||
---- GSPOS SSI4 47 SSVD 0.25002391E+01 0.14179556E+02 0.22625916E+02 118 ONLY
|
||||
---- GSPOS SSI4 48 SSVD 0.25002391E+01 0.14179556E+02 0.15861750E+02 118 ONLY
|
||||
---- GSPOS SSI4 49 SSVD 0.25002391E+01 0.14179556E+02 0.90975819E+01 118 ONLY
|
||||
---- GSPOS SSI4 50 SSVD 0.25002391E+01 0.14179556E+02 0.23334141E+01 119 ONLY
|
||||
---- GSPOS SSI4 51 SSVD 0.25002391E+01 0.14179556E+02 -0.44307537E+01 119 ONLY
|
||||
---- GSPOS SSI4 52 SSVD 0.25002391E+01 0.14179556E+02 -0.11194916E+02 119 ONLY
|
||||
---- GSPOS SSI6 42 SSVD 0.22884591E+01 0.12978493E+02 -0.17755049E+02 120 ONLY
|
||||
---- GSPOS SSI6 43 SSVD -0.21904190E+01 0.12422482E+02 0.28153944E+02 121 ONLY
|
||||
---- GSPOS SSI4 53 SSVD -0.24307795E+01 0.13785634E+02 0.21661917E+02 122 ONLY
|
||||
---- GSPOS SSI4 54 SSVD -0.24307795E+01 0.13785634E+02 0.14897751E+02 122 ONLY
|
||||
---- GSPOS SSI5 59 SSVD -0.24307795E+01 0.13785634E+02 0.88160839E+01 122 ONLY
|
||||
---- GSPOS SSI4 55 SSVD -0.24307795E+01 0.13785634E+02 0.27344170E+01 123 ONLY
|
||||
---- GSPOS SSI4 56 SSVD -0.24307795E+01 0.13785634E+02 -0.40297508E+01 123 ONLY
|
||||
---- GSPOS SSI4 57 SSVD -0.24307795E+01 0.13785634E+02 -0.10793917E+02 123 ONLY
|
||||
---- GSPOS SSI6 44 SSVD -0.22189994E+01 0.12584570E+02 -0.17354050E+02 124 ONLY
|
||||
---- GSPOS SSI6 45 SSVD -0.65070601E+01 0.11270556E+02 0.29117945E+02 125 ONLY
|
||||
---- GSPOS SSI4 58 SSVD -0.71991506E+01 0.12469293E+02 0.22625916E+02 126 ONLY
|
||||
---- GSPOS SSI4 59 SSVD -0.71991506E+01 0.12469293E+02 0.15861750E+02 126 ONLY
|
||||
---- GSPOS SSI4 60 SSVD -0.71991506E+01 0.12469293E+02 0.90975819E+01 126 ONLY
|
||||
---- GSPOS SSI4 61 SSVD -0.71991506E+01 0.12469293E+02 0.23334141E+01 127 ONLY
|
||||
---- GSPOS SSI4 62 SSVD -0.71991506E+01 0.12469293E+02 -0.44307537E+01 127 ONLY
|
||||
---- GSPOS SSI4 63 SSVD -0.71991506E+01 0.12469293E+02 -0.11194916E+02 127 ONLY
|
||||
---- GSPOS SSI6 46 SSVD -0.65893545E+01 0.11413095E+02 -0.17755049E+02 128 ONLY
|
||||
---- GSPOS SSI6 47 SSVD -0.96629753E+01 0.81081991E+01 0.28153944E+02 129 ONLY
|
||||
---- GSPOS SSI4 64 SSVD -0.10723320E+02 0.89979343E+01 0.21661917E+02 130 ONLY
|
||||
---- GSPOS SSI4 65 SSVD -0.10723320E+02 0.89979343E+01 0.14897751E+02 130 ONLY
|
||||
---- GSPOS SSI5 60 SSVD -0.10723320E+02 0.89979343E+01 0.88160839E+01 130 ONLY
|
||||
---- GSPOS SSI4 66 SSVD -0.10723320E+02 0.89979343E+01 0.27344170E+01 131 ONLY
|
||||
---- GSPOS SSI4 67 SSVD -0.10723320E+02 0.89979343E+01 -0.40297508E+01 131 ONLY
|
||||
---- GSPOS SSI4 68 SSVD -0.10723320E+02 0.89979343E+01 -0.10793917E+02 131 ONLY
|
||||
---- GSPOS SSI6 48 SSVD -0.97890577E+01 0.82139950E+01 -0.17354050E+02 132 ONLY
|
||||
---- GSPOS SSI6 49 SSVD -0.12229271E+02 0.44510913E+01 0.29117945E+02 133 ONLY
|
||||
---- GSPOS SSI4 69 SSVD -0.13529976E+02 0.49245095E+01 0.22625916E+02 134 ONLY
|
||||
---- GSPOS SSI4 70 SSVD -0.13529976E+02 0.49245095E+01 0.15861750E+02 134 ONLY
|
||||
---- GSPOS SSI4 71 SSVD -0.13529976E+02 0.49245095E+01 0.90975819E+01 134 ONLY
|
||||
---- GSPOS SSI4 72 SSVD -0.13529976E+02 0.49245095E+01 0.23334141E+01 135 ONLY
|
||||
---- GSPOS SSI4 73 SSVD -0.13529976E+02 0.49245095E+01 -0.44307537E+01 135 ONLY
|
||||
---- GSPOS SSI4 74 SSVD -0.13529976E+02 0.49245095E+01 -0.11194916E+02 135 ONLY
|
||||
---- GSPOS SSI6 50 SSVD -0.12383934E+02 0.45073843E+01 -0.17755049E+02 136 ONLY
|
||||
---- GSPOS SSI6 51 SSVD -0.12614119E+02 -0.11027613E-05 0.28153944E+02 137 ONLY
|
||||
---- GSPOS SSI4 75 SSVD -0.13998300E+02 -0.12237703E-05 0.21661917E+02 138 ONLY
|
||||
---- GSPOS SSI4 76 SSVD -0.13998300E+02 -0.12237703E-05 0.14897751E+02 138 ONLY
|
||||
---- GSPOS SSI5 61 SSVD -0.13998300E+02 -0.12237703E-05 0.88160839E+01 138 ONLY
|
||||
---- GSPOS SSI4 77 SSVD -0.13998300E+02 -0.12237703E-05 0.27344170E+01 139 ONLY
|
||||
---- GSPOS SSI4 78 SSVD -0.13998300E+02 -0.12237703E-05 -0.40297508E+01 139 ONLY
|
||||
---- GSPOS SSI4 79 SSVD -0.13998300E+02 -0.12237703E-05 -0.10793917E+02 139 ONLY
|
||||
---- GSPOS SSI6 52 SSVD -0.12778708E+02 -0.11171501E-05 -0.17354050E+02 140 ONLY
|
||||
---- GSPOS SSI6 53 SSVD -0.12229271E+02 -0.44510908E+01 0.29117945E+02 141 ONLY
|
||||
---- GSPOS SSI4 80 SSVD -0.13529976E+02 -0.49245086E+01 0.22625916E+02 142 ONLY
|
||||
---- GSPOS SSI4 81 SSVD -0.13529976E+02 -0.49245086E+01 0.15861750E+02 142 ONLY
|
||||
---- GSPOS SSI4 82 SSVD -0.13529976E+02 -0.49245086E+01 0.90975819E+01 142 ONLY
|
||||
---- GSPOS SSI4 83 SSVD -0.13529976E+02 -0.49245086E+01 0.23334141E+01 143 ONLY
|
||||
---- GSPOS SSI4 84 SSVD -0.13529976E+02 -0.49245086E+01 -0.44307537E+01 143 ONLY
|
||||
---- GSPOS SSI4 85 SSVD -0.13529976E+02 -0.49245086E+01 -0.11194916E+02 143 ONLY
|
||||
---- GSPOS SSI6 54 SSVD -0.12383934E+02 -0.45073833E+01 -0.17755049E+02 144 ONLY
|
||||
---- GSPOS SSI6 55 SSVD -0.96629763E+01 -0.81081991E+01 0.28153944E+02 145 ONLY
|
||||
---- GSPOS SSI4 86 SSVD -0.10723320E+02 -0.89979334E+01 0.21661917E+02 146 ONLY
|
||||
---- GSPOS SSI4 87 SSVD -0.10723320E+02 -0.89979334E+01 0.14897751E+02 146 ONLY
|
||||
---- GSPOS SSI5 62 SSVD -0.10723320E+02 -0.89979334E+01 0.88160839E+01 146 ONLY
|
||||
---- GSPOS SSI4 88 SSVD -0.10723320E+02 -0.89979334E+01 0.27344170E+01 147 ONLY
|
||||
---- GSPOS SSI4 89 SSVD -0.10723320E+02 -0.89979334E+01 -0.40297508E+01 147 ONLY
|
||||
---- GSPOS SSI4 90 SSVD -0.10723320E+02 -0.89979334E+01 -0.10793917E+02 147 ONLY
|
||||
---- GSPOS SSI6 56 SSVD -0.97890587E+01 -0.82139940E+01 -0.17354050E+02 148 ONLY
|
||||
---- GSPOS SSI6 57 SSVD -0.65070581E+01 -0.11270557E+02 0.29117945E+02 149 ONLY
|
||||
---- GSPOS SSI4 91 SSVD -0.71991482E+01 -0.12469294E+02 0.22625916E+02 150 ONLY
|
||||
---- GSPOS SSI4 92 SSVD -0.71991482E+01 -0.12469294E+02 0.15861750E+02 150 ONLY
|
||||
---- GSPOS SSI4 93 SSVD -0.71991482E+01 -0.12469294E+02 0.90975819E+01 150 ONLY
|
||||
---- GSPOS SSI4 94 SSVD -0.71991482E+01 -0.12469294E+02 0.23334141E+01 151 ONLY
|
||||
---- GSPOS SSI4 95 SSVD -0.71991482E+01 -0.12469294E+02 -0.44307537E+01 151 ONLY
|
||||
---- GSPOS SSI4 96 SSVD -0.71991482E+01 -0.12469294E+02 -0.11194916E+02 151 ONLY
|
||||
---- GSPOS SSI6 58 SSVD -0.65893526E+01 -0.11413095E+02 -0.17755049E+02 152 ONLY
|
||||
---- GSPOS SSI6 59 SSVD -0.21904182E+01 -0.12422482E+02 0.28153944E+02 153 ONLY
|
||||
---- GSPOS SSI4 97 SSVD -0.24307785E+01 -0.13785634E+02 0.21661917E+02 154 ONLY
|
||||
---- GSPOS SSI4 98 SSVD -0.24307785E+01 -0.13785634E+02 0.14897751E+02 154 ONLY
|
||||
---- GSPOS SSI5 63 SSVD -0.24307785E+01 -0.13785634E+02 0.88160839E+01 154 ONLY
|
||||
---- GSPOS SSI4 99 SSVD -0.24307785E+01 -0.13785634E+02 0.27344170E+01 155 ONLY
|
||||
---- GSPOS SSI4 100 SSVD -0.24307785E+01 -0.13785634E+02 -0.40297508E+01 155 ONLY
|
||||
---- GSPOS SSI4 101 SSVD -0.24307785E+01 -0.13785634E+02 -0.10793917E+02 155 ONLY
|
||||
---- GSPOS SSI6 60 SSVD -0.22189987E+01 -0.12584571E+02 -0.17354050E+02 156 ONLY
|
||||
---- GSPOS SSI6 61 SSVD 0.22598774E+01 -0.12816404E+02 0.29117945E+02 157 ONLY
|
||||
---- GSPOS SSI4 102 SSVD 0.25002379E+01 -0.14179556E+02 0.22625916E+02 158 ONLY
|
||||
---- GSPOS SSI4 103 SSVD 0.25002379E+01 -0.14179556E+02 0.15861750E+02 158 ONLY
|
||||
---- GSPOS SSI4 104 SSVD 0.25002379E+01 -0.14179556E+02 0.90975819E+01 158 ONLY
|
||||
---- GSPOS SSI4 105 SSVD 0.25002379E+01 -0.14179556E+02 0.23334141E+01 159 ONLY
|
||||
---- GSPOS SSI4 106 SSVD 0.25002379E+01 -0.14179556E+02 -0.44307537E+01 159 ONLY
|
||||
---- GSPOS SSI4 107 SSVD 0.25002379E+01 -0.14179556E+02 -0.11194916E+02 159 ONLY
|
||||
---- GSPOS SSI6 62 SSVD 0.22884581E+01 -0.12978493E+02 -0.17755049E+02 160 ONLY
|
||||
---- GSPOS SSI6 63 SSVD 0.63070583E+01 -0.10924148E+02 0.28153944E+02 161 ONLY
|
||||
---- GSPOS SSI4 108 SSVD 0.69991484E+01 -0.12122884E+02 0.21661917E+02 162 ONLY
|
||||
---- GSPOS SSI4 109 SSVD 0.69991484E+01 -0.12122884E+02 0.14897751E+02 162 ONLY
|
||||
---- GSPOS SSI5 64 SSVD 0.69991484E+01 -0.12122884E+02 0.88160839E+01 162 ONLY
|
||||
---- GSPOS SSI4 110 SSVD 0.69991484E+01 -0.12122884E+02 0.27344170E+01 163 ONLY
|
||||
---- GSPOS SSI4 111 SSVD 0.69991484E+01 -0.12122884E+02 -0.40297508E+01 163 ONLY
|
||||
---- GSPOS SSI4 112 SSVD 0.69991484E+01 -0.12122884E+02 -0.10793917E+02 163 ONLY
|
||||
---- GSPOS SSI6 64 SSVD 0.63893528E+01 -0.11066686E+02 -0.17354050E+02 164 ONLY
|
||||
---- GSPOS SSI6 65 SSVD 0.99693909E+01 -0.83653154E+01 0.29117945E+02 165 ONLY
|
||||
---- GSPOS SSI4 113 SSVD 0.11029736E+02 -0.92550507E+01 0.22625916E+02 166 ONLY
|
||||
---- GSPOS SSI4 114 SSVD 0.11029736E+02 -0.92550507E+01 0.15861750E+02 166 ONLY
|
||||
---- GSPOS SSI4 115 SSVD 0.11029736E+02 -0.92550507E+01 0.90975819E+01 166 ONLY
|
||||
---- GSPOS SSI4 116 SSVD 0.11029736E+02 -0.92550507E+01 0.23334141E+01 167 ONLY
|
||||
---- GSPOS SSI4 117 SSVD 0.11029736E+02 -0.92550507E+01 -0.44307537E+01 167 ONLY
|
||||
---- GSPOS SSI4 118 SSVD 0.11029736E+02 -0.92550507E+01 -0.11194916E+02 167 ONLY
|
||||
---- GSPOS SSI6 66 SSVD 0.10095473E+02 -0.84711113E+01 -0.17755049E+02 168 ONLY
|
||||
---- GSPOS SSI6 67 SSVD 0.11853394E+02 -0.43142853E+01 0.28153944E+02 169 ONLY
|
||||
---- GSPOS SSI4 119 SSVD 0.13154098E+02 -0.47877035E+01 0.21661917E+02 170 ONLY
|
||||
---- GSPOS SSI4 120 SSVD 0.13154098E+02 -0.47877035E+01 0.14897751E+02 170 ONLY
|
||||
---- GSPOS SSI5 65 SSVD 0.13154098E+02 -0.47877035E+01 0.88160839E+01 170 ONLY
|
||||
---- GSPOS SSI4 121 SSVD 0.13154098E+02 -0.47877035E+01 0.27344170E+01 171 ONLY
|
||||
---- GSPOS SSI4 122 SSVD 0.13154098E+02 -0.47877035E+01 -0.40297508E+01 171 ONLY
|
||||
---- GSPOS SSI4 123 SSVD 0.13154098E+02 -0.47877035E+01 -0.10793917E+02 171 ONLY
|
||||
---- GSPOS SSI6 68 SSVD 0.12008057E+02 -0.43705783E+01 -0.17354050E+02 172 ONLY
|
||||
---- GSPOS SSA1 1 SSI1 0.00000000E+00 0.17000000E-02 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSK1 1 SSI1 0.00000000E+00 -0.15000000E-01 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSA2 1 SSI2 0.00000000E+00 0.17000000E-02 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSK2 1 SSI2 0.00000000E+00 -0.15000000E-01 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSA3 1 SSI3 0.00000000E+00 0.17000000E-02 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSK3 1 SSI3 0.00000000E+00 -0.15000000E-01 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSA6 1 SSI6 0.00000000E+00 0.17000000E-02 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSK6 1 SSI6 0.00000000E+00 -0.15000000E-01 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSA4 1 SSI4 0.00000000E+00 0.17000000E-02 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSK4 1 SSI4 0.00000000E+00 -0.15000000E-01 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSA5 1 SSI5 0.00000000E+00 0.17000000E-02 0.00000000E+00 0 ONLY
|
||||
---- GSPOS SSK5 1 SSI5 0.00000000E+00 -0.15000000E-01 0.00000000E+00 0 ONLY
|
||||
---- GSDET SSVD SSA1 3 SSVD SSI1 SSA1 2 12 2 2 5000 100
|
||||
---- GSDETH SSVD SSA1 11 x1 y1 z1 dedx x0 y0 z0 time igtr wadr beta 0 0 0 16 0 0 0 0 0 0 0 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.00000000E+00 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.50000000E+04 0.00000000E+00 0.10000000E+01 0.00000000E+00 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+02 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+01 0.10000000E+01 0.20000000E+10
|
||||
---- GSDET SSVD SSA2 3 SSVD SSI2 SSA2 2 12 2 2 5000 100
|
||||
---- GSDETH SSVD SSA2 11 x1 y1 z1 dedx x0 y0 z0 time igtr wadr beta 0 0 0 16 0 0 0 0 0 0 0 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.00000000E+00 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.50000000E+04 0.00000000E+00 0.10000000E+01 0.00000000E+00 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+02 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+01 0.10000000E+01 0.20000000E+10
|
||||
---- GSDET SSVD SSA3 3 SSVD SSI3 SSA3 2 12 2 2 5000 100
|
||||
---- GSDETH SSVD SSA3 11 x1 y1 z1 dedx x0 y0 z0 time igtr wadr beta 0 0 0 16 0 0 0 0 0 0 0 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.00000000E+00 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.50000000E+04 0.00000000E+00 0.10000000E+01 0.00000000E+00 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+02 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+01 0.10000000E+01 0.20000000E+10
|
||||
---- GSDET SSVD SSA6 3 SSVD SSI6 SSA6 2 12 2 2 5000 100
|
||||
---- GSDETH SSVD SSA6 11 x1 y1 z1 dedx x0 y0 z0 time igtr wadr beta 0 0 0 16 0 0 0 0 0 0 0 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.00000000E+00 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.50000000E+04 0.00000000E+00 0.10000000E+01 0.00000000E+00 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+02 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+01 0.10000000E+01 0.20000000E+10
|
||||
---- GSDET SSVD SSA4 3 SSVD SSI4 SSA4 2 12 2 2 5000 100
|
||||
---- GSDETH SSVD SSA4 11 x1 y1 z1 dedx x0 y0 z0 time igtr wadr beta 0 0 0 16 0 0 0 0 0 0 0 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.00000000E+00 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.50000000E+04 0.00000000E+00 0.10000000E+01 0.00000000E+00 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+02 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+01 0.10000000E+01 0.20000000E+10
|
||||
---- GSDET SSVD SSA5 3 SSVD SSI5 SSA5 2 12 2 2 5000 100
|
||||
---- GSDETH SSVD SSA5 11 x1 y1 z1 dedx x0 y0 z0 time igtr wadr beta 0 0 0 16 0 0 0 0 0 0 0 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.00000000E+00 0.10000000E+03 0.10000000E+03 0.10000000E+03 0.50000000E+04 0.00000000E+00 0.10000000E+01 0.00000000E+00 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+02 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+05 0.10000000E+01 0.10000000E+01 0.20000000E+10
|
||||
---- GGCLOS
|
||||
@@ -0,0 +1,33 @@
|
||||
---- GSMATE 1 "HYDROGEN " 0.10100000E+01 0.10000000E+01 0.70799999E-01 0.86500000E+03 0
|
||||
---- GSMATE 2 "DEUTERIUM " 0.20100000E+01 0.10000000E+01 0.16200000E+00 0.75700000E+03 0
|
||||
---- GSMATE 3 "HELIUM " 0.40000000E+01 0.20000000E+01 0.12500000E+00 0.75500000E+03 0
|
||||
---- GSMATE 4 "LITHIUM " 0.69400001E+01 0.30000000E+01 0.53399998E+00 0.15500000E+03 0
|
||||
---- GSMATE 5 "BERILLIUM " 0.90100002E+01 0.40000000E+01 0.18480000E+01 0.35299999E+02 0
|
||||
---- GSMATE 6 "CARBON " 0.12010000E+02 0.60000000E+01 0.22650001E+01 0.18799999E+02 0
|
||||
---- GSMATE 7 "NITROGEN " 0.14010000E+02 0.70000000E+01 0.80800003E+00 0.44500000E+02 0
|
||||
---- GSMATE 8 "NEON " 0.20180000E+02 0.10000000E+02 0.12070000E+01 0.24000000E+02 0
|
||||
---- GSMATE 9 "ALUMINIUM " 0.26980000E+02 0.13000000E+02 0.27000000E+01 0.88999996E+01 0
|
||||
---- GSMATE 10 "IRON " 0.55849998E+02 0.26000000E+02 0.78699999E+01 0.17600000E+01 0
|
||||
---- GSMATE 11 "COPPER " 0.63540001E+02 0.29000000E+02 0.89600000E+01 0.14299999E+01 0
|
||||
---- GSMATE 12 "TUNGSTEN " 0.18385001E+03 0.74000000E+02 0.19299999E+02 0.34999999E+00 0
|
||||
---- GSMATE 13 "LEAD " 0.20719000E+03 0.82000000E+02 0.11350000E+02 0.56000000E+00 0
|
||||
---- GSMATE 14 "URANIUM " 0.23803000E+03 0.92000000E+02 0.18950001E+02 0.31999999E+00 0
|
||||
---- GSMATE 15 "AIR " 0.14610000E+02 0.73000002E+01 0.12050000E-02 0.30423240E+05 0
|
||||
---- GSMATE 16 "VACUUM " 0.10000000E-15 0.10000000E-15 0.10000000E-15 0.10000000E+17 0
|
||||
---- GSTMED 1 "Ether " 16 0 0 0.10000000E+04 0.99999998E-02 0.10000000E+11 0.00000000E+00 0.10000000E-02 0.00000000E+00 0
|
||||
---- GSVOLU HALL BOX 1 3 0.40000000E+03 0.40000000E+03 0.40000000E+03
|
||||
---- GSVOLU TUB1 TUBS 1 5 0.00000000E+00 0.20000000E+02 0.10000000E+03 0.00000000E+00 0.36000000E+03
|
||||
---- GSVOLU TUB2 TUBS 1 5 0.20000000E+02 0.10000000E+03 0.10000000E+03 0.00000000E+00 0.36000000E+03
|
||||
---- GSVOLU BOX1 BOX 1 0
|
||||
---- GSVOLU BOX2 BOX 1 3 -0.10000000E+01 -0.10000000E+01 0.10000000E+01
|
||||
---- GSPOS TUB1 1 HALL 0.00000000E+00 0.00000000E+00 0.10000000E+03 0 ONLY
|
||||
---- GSPOS TUB2 1 HALL 0.00000000E+00 0.00000000E+00 0.10000000E+03 0 ONLY
|
||||
---- GSPOSP BOX1 1 HALL 0.00000000E+00 0.00000000E+00 -0.40000000E+02 0 ONLY 3 0.50000000E+02 0.25000000E+02 0.50000000E+01
|
||||
---- GSPOSP BOX1 2 HALL 0.00000000E+00 0.00000000E+00 -0.80000000E+02 0 ONLY 3 0.10000000E+03 0.50000000E+02 0.50000000E+01
|
||||
---- GSPOSP BOX1 3 HALL 0.00000000E+00 0.00000000E+00 -0.12000000E+03 0 ONLY 3 0.15000000E+03 0.75000000E+02 0.50000000E+01
|
||||
---- GSPOSP BOX1 4 HALL 0.00000000E+00 0.00000000E+00 -0.16000000E+03 0 ONLY 3 0.20000000E+03 0.10000000E+03 0.50000000E+01
|
||||
---- GSDVN2 TBD1 TUB1 60 2 0.00000000E+00 1
|
||||
---- GSDVN2 TBD2 TUB2 5 1 0.20000000E+02 1
|
||||
---- GSPOS BOX2 1 BOX1 0.00000000E+00 0.00000000E+00 0.10000000E+01 0 ONLY
|
||||
---- GSDVN2 BXD1 BOX2 4 1 0.00000000E+00 1
|
||||
---- GGCLOS
|
||||
Reference in New Issue
Block a user