Skip to content
Snippets Groups Projects
Commit 19135d1b authored by Adrien Matta's avatar Adrien Matta :skull_crossbones:
Browse files

* adding scorer to inner and outer barrel in strasse

parent e4ba47c5
No related branches found
No related tags found
No related merge requests found
Pipeline #76538 passed
...@@ -63,7 +63,7 @@ using namespace CLHEP; ...@@ -63,7 +63,7 @@ using namespace CLHEP;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
namespace Strasse_NS{ namespace Strasse_NS{
// Energy and time Resolution // Energy and time Resolution
const double EnergyThreshold = 0.1*MeV; const double EnergyThreshold = 10*keV;
const double ResoEnergy = 0.015*MeV ; const double ResoEnergy = 0.015*MeV ;
//////////////////// ////////////////////
...@@ -86,6 +86,8 @@ namespace Strasse_NS{ ...@@ -86,6 +86,8 @@ namespace Strasse_NS{
double Inner_PCB_DownstreamWidth=2*mm; double Inner_PCB_DownstreamWidth=2*mm;
double Inner_PCB_MidWidth=2*mm; double Inner_PCB_MidWidth=2*mm;
double Inner_PCB_Thickness=3*mm; double Inner_PCB_Thickness=3*mm;
double Inner_Wafer_FrontStrips= 128;
double Inner_Wafer_BackStrips= 128;
//////////////////// ////////////////////
// Outer Detector // // Outer Detector //
...@@ -107,6 +109,9 @@ namespace Strasse_NS{ ...@@ -107,6 +109,9 @@ namespace Strasse_NS{
double Outer_PCB_DownstreamWidth=2*mm; double Outer_PCB_DownstreamWidth=2*mm;
double Outer_PCB_MidWidth=2*mm; double Outer_PCB_MidWidth=2*mm;
double Outer_PCB_Thickness=3*mm; double Outer_PCB_Thickness=3*mm;
double Outer_Wafer_FrontStrips= 128;
double Outer_Wafer_BackStrips= 128;
} }
...@@ -267,6 +272,7 @@ G4LogicalVolume* Strasse::BuildInnerDetector(){ ...@@ -267,6 +272,7 @@ G4LogicalVolume* Strasse::BuildInnerDetector(){
G4LogicalVolume* logicActiveWafer = G4LogicalVolume* logicActiveWafer =
new G4LogicalVolume(ActiveWaferShape,m_MaterialSilicon,"logicActiveWafer", 0, 0, 0); new G4LogicalVolume(ActiveWaferShape,m_MaterialSilicon,"logicActiveWafer", 0, 0, 0);
logicActiveWafer->SetVisAttributes(SiliconVisAtt); logicActiveWafer->SetVisAttributes(SiliconVisAtt);
logicActiveWafer->SetSensitiveDetector(m_InnerScorer);
new G4PVPlacement(new G4RotationMatrix(0,0,0), new G4PVPlacement(new G4RotationMatrix(0,0,0),
G4ThreeVector(0,0,0.5*(Inner_Wafer_PADExternal-Inner_Wafer_PADInternal)), // assymetric pading for bounding G4ThreeVector(0,0,0.5*(Inner_Wafer_PADExternal-Inner_Wafer_PADInternal)), // assymetric pading for bounding
...@@ -392,6 +398,7 @@ G4LogicalVolume* Strasse::BuildOuterDetector(){ ...@@ -392,6 +398,7 @@ G4LogicalVolume* Strasse::BuildOuterDetector(){
G4LogicalVolume* logicActiveWafer = G4LogicalVolume* logicActiveWafer =
new G4LogicalVolume(ActiveWaferShape,m_MaterialSilicon,"logicActiveWafer", 0, 0, 0); new G4LogicalVolume(ActiveWaferShape,m_MaterialSilicon,"logicActiveWafer", 0, 0, 0);
logicActiveWafer->SetVisAttributes(SiliconVisAtt); logicActiveWafer->SetVisAttributes(SiliconVisAtt);
logicActiveWafer->SetSensitiveDetector(m_OuterScorer);
new G4PVPlacement(new G4RotationMatrix(0,0,0), new G4PVPlacement(new G4RotationMatrix(0,0,0),
G4ThreeVector(0,0,0.5*(Outer_Wafer_PADExternal-Outer_Wafer_PADInternal)), // assymetric pading for bounding G4ThreeVector(0,0,0.5*(Outer_Wafer_PADExternal-Outer_Wafer_PADInternal)), // assymetric pading for bounding
...@@ -440,6 +447,8 @@ void Strasse::ReadConfiguration(NPL::InputParser parser){ ...@@ -440,6 +447,8 @@ void Strasse::ReadConfiguration(NPL::InputParser parser){
"Inner_PCB_DownstreamWidth", "Inner_PCB_DownstreamWidth",
"Inner_PCB_MidWidth", "Inner_PCB_MidWidth",
"Inner_PCB_Thickness", "Inner_PCB_Thickness",
"Inner_Wafer_FrontStrips",
"Inner_Wafer_BackStrips",
"Outer_Wafer_Length", "Outer_Wafer_Length",
"Outer_Wafer_Width", "Outer_Wafer_Width",
"Outer_Wafer_Thickness", "Outer_Wafer_Thickness",
...@@ -454,6 +463,8 @@ void Strasse::ReadConfiguration(NPL::InputParser parser){ ...@@ -454,6 +463,8 @@ void Strasse::ReadConfiguration(NPL::InputParser parser){
"Outer_PCB_DownstreamWidth", "Outer_PCB_DownstreamWidth",
"Outer_PCB_MidWidth", "Outer_PCB_MidWidth",
"Outer_PCB_Thickness", "Outer_PCB_Thickness",
"Outer_Wafer_FrontStrips",
"Outer_Wafer_BackStrips"
}; };
if(blocks_info[0]->HasTokenList(info)){ if(blocks_info[0]->HasTokenList(info)){
...@@ -465,6 +476,8 @@ void Strasse::ReadConfiguration(NPL::InputParser parser){ ...@@ -465,6 +476,8 @@ void Strasse::ReadConfiguration(NPL::InputParser parser){
Inner_Wafer_PADExternal = blocks_info[0]->GetDouble("Inner_Wafer_PADExternal","mm"); Inner_Wafer_PADExternal = blocks_info[0]->GetDouble("Inner_Wafer_PADExternal","mm");
Inner_Wafer_PADInternal = blocks_info[0]->GetDouble("Inner_Wafer_PADInternal","mm"); Inner_Wafer_PADInternal = blocks_info[0]->GetDouble("Inner_Wafer_PADInternal","mm");
Inner_Wafer_GuardRing = blocks_info[0]->GetDouble("Inner_Wafer_GuardRing","mm"); Inner_Wafer_GuardRing = blocks_info[0]->GetDouble("Inner_Wafer_GuardRing","mm");
Inner_Wafer_FrontStrips = blocks_info[0]->GetInt("Inner_Wafer_FrontStrips");
Inner_Wafer_BackStrips = blocks_info[0]->GetInt("Inner_Wafer_BackStrips");
Inner_PCB_PortWidth = blocks_info[0]->GetDouble("Inner_PCB_PortWidth","mm"); Inner_PCB_PortWidth = blocks_info[0]->GetDouble("Inner_PCB_PortWidth","mm");
Inner_PCB_StarboardWidth = blocks_info[0]->GetDouble("Inner_PCB_StarboardWidth","mm"); Inner_PCB_StarboardWidth = blocks_info[0]->GetDouble("Inner_PCB_StarboardWidth","mm");
Inner_PCB_BevelAngle = blocks_info[0]->GetDouble("Inner_PCB_BevelAngle","mm"); Inner_PCB_BevelAngle = blocks_info[0]->GetDouble("Inner_PCB_BevelAngle","mm");
...@@ -479,6 +492,8 @@ void Strasse::ReadConfiguration(NPL::InputParser parser){ ...@@ -479,6 +492,8 @@ void Strasse::ReadConfiguration(NPL::InputParser parser){
Outer_Wafer_PADExternal = blocks_info[0]->GetDouble("Outer_Wafer_PADExternal","mm"); Outer_Wafer_PADExternal = blocks_info[0]->GetDouble("Outer_Wafer_PADExternal","mm");
Outer_Wafer_PADInternal = blocks_info[0]->GetDouble("Outer_Wafer_PADInternal","mm"); Outer_Wafer_PADInternal = blocks_info[0]->GetDouble("Outer_Wafer_PADInternal","mm");
Outer_Wafer_GuardRing = blocks_info[0]->GetDouble("Outer_Wafer_GuardRing","mm"); Outer_Wafer_GuardRing = blocks_info[0]->GetDouble("Outer_Wafer_GuardRing","mm");
Outer_Wafer_FrontStrips = blocks_info[0]->GetInt("Outer_Wafer_FrontStrips");
Outer_Wafer_BackStrips = blocks_info[0]->GetInt("Outer_Wafer_BackStrips");
Outer_PCB_PortWidth = blocks_info[0]->GetDouble("Outer_PCB_PortWidth","mm"); Outer_PCB_PortWidth = blocks_info[0]->GetDouble("Outer_PCB_PortWidth","mm");
Outer_PCB_StarboardWidth = blocks_info[0]->GetDouble("Outer_PCB_StarboardWidth","mm"); Outer_PCB_StarboardWidth = blocks_info[0]->GetDouble("Outer_PCB_StarboardWidth","mm");
Outer_PCB_BevelAngle = blocks_info[0]->GetDouble("Outer_PCB_BevelAngle","deg"); Outer_PCB_BevelAngle = blocks_info[0]->GetDouble("Outer_PCB_BevelAngle","deg");
...@@ -590,78 +605,82 @@ void Strasse::InitializeRootOutput(){ ...@@ -590,78 +605,82 @@ void Strasse::InitializeRootOutput(){
// Called at in the EventAction::EndOfEventAvtion // Called at in the EventAction::EndOfEventAvtion
void Strasse::ReadSensitive(const G4Event* ){ void Strasse::ReadSensitive(const G4Event* ){
m_Event->Clear(); m_Event->Clear();
/*
/////////// ///////////
// First Stage scorer // Inner barrel scorer
DSSDScorers::PS_Rectangle* InnerScorer= (DSSDScorers::PS_Rectangle*) m_InnerScorer->GetPrimitive(0); DSSDScorers::PS_Rectangle* InnerScorer= (DSSDScorers::PS_Rectangle*) m_InnerScorer->GetPrimitive(0);
unsigned int sizeFront = InnerScorer->GetLengthMult(); unsigned int sizeFront = InnerScorer->GetLengthMult();
for(unsigned int i = 0 ; i < sizeFront ; i++){ for(unsigned int i = 0 ; i < sizeFront ; i++){
double Energy = RandGauss::shoot(InnerScorer->GetEnergyLength(i), ResoEnergy); double Energy = RandGauss::shoot(InnerScorer->GetEnergyLength(i), ResoEnergy);
if(Energy>EnergyThreshold){ if(Energy>EnergyThreshold){
int DetNbr = InnerScorer->GetDetectorLength(i); int DetNbr = InnerScorer->GetDetectorLength(i);
int StripFront = InnerScorer->GetStripLength(i); int StripFront = InnerScorer->GetStripLength(i);
m_Event->SetInnerXE(DetNbr, StripFront, Energy); // m_Event->SetInnerXE(DetNbr, StripFront, Energy);
} std::cout << DetNbr << " " << StripFront << " " << Energy/keV << std::endl;
}
} }
unsigned int sizeBack = InnerScorer->GetWidthMult(); unsigned int sizeBack = InnerScorer->GetWidthMult();
for(unsigned int i = 0 ; i < sizeBack ; i++){ for(unsigned int i = 0 ; i < sizeBack ; i++){
double Energy = RandGauss::shoot(InnerScorer->GetEnergyWidth(i), ResoEnergy); double Energy = RandGauss::shoot(InnerScorer->GetEnergyWidth(i), ResoEnergy);
if(Energy>EnergyThreshold){ if(Energy>EnergyThreshold){
int DetNbr = InnerScorer->GetDetectorWidth(i); int DetNbr = InnerScorer->GetDetectorWidth(i);
int StripFront = InnerScorer->GetStripWidth(i); int StripFront = InnerScorer->GetStripWidth(i);
m_Event->SetInnerYE(DetNbr, StripFront, Energy); // m_Event->SetInnerYE(DetNbr, StripFront, Energy);
} }
} }
InnerScorer->clear(); InnerScorer->clear();
/////////// ///////////
// Second Stage scorer // Outer barrel scorer
DSSDScorers::PS_Rectangle* OuterScorer= (DSSDScorers::PS_Rectangle*) m_OuterScorer->GetPrimitive(0); DSSDScorers::PS_Rectangle* OuterScorer= (DSSDScorers::PS_Rectangle*) m_OuterScorer->GetPrimitive(0);
unsigned int sizeFrontOuter = OuterScorer->GetLengthMult(); sizeFront = OuterScorer->GetLengthMult();
for(unsigned int i = 0 ; i < sizeFrontOuter ; i++){ for(unsigned int i = 0 ; i < sizeFront ; i++){
double Energy = RandGauss::shoot(OuterScorer->GetEnergyLength(i), ResoEnergy); double Energy = RandGauss::shoot(OuterScorer->GetEnergyLength(i), ResoEnergy);
if(Energy>EnergyThreshold){ if(Energy>EnergyThreshold){
int DetNbr = OuterScorer->GetDetectorLength(i); int DetNbr = OuterScorer->GetDetectorLength(i);
int StripFront = OuterScorer->GetStripLength(i); int StripFront = OuterScorer->GetStripLength(i);
m_Event->SetOuterXE(DetNbr, StripFront, Energy); // m_Event->SetOuterXE(DetNbr, StripFront, Energy);
} }
}
unsigned int sizeBackOuter = OuterScorer->GetWidthMult();
for(unsigned int i = 0 ; i < sizeBackOuter ; i++){
double Energy = RandGauss::shoot(OuterScorer->GetEnergyWidth(i), ResoEnergy);
if(Energy>EnergyThreshold){
int DetNbr = OuterScorer->GetDetectorWidth(i);
int StripFront = OuterScorer->GetStripWidth(i);
m_Event->SetOuterYE(DetNbr, StripFront, Energy);
} }
sizeBack = OuterScorer->GetWidthMult();
for(unsigned int i = 0 ; i < sizeBack ; i++){
double Energy = RandGauss::shoot(OuterScorer->GetEnergyWidth(i), ResoEnergy);
if(Energy>EnergyThreshold){
int DetNbr = OuterScorer->GetDetectorWidth(i);
int StripFront = OuterScorer->GetStripWidth(i);
// m_Event->SetOuterYE(DetNbr, StripFront, Energy);
}
} }
OuterScorer->clear(); OuterScorer->clear();
*/
} }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////
void Strasse::InitializeScorers() { void Strasse::InitializeScorers() {
/* // This check is necessary in case the geometry is reloaded // This check is necessary in case the geometry is reloaded
bool already_exist = false; bool already_exist = false;
m_InnerScorer = CheckScorer("InnerScorer",already_exist) ; m_InnerScorer = CheckScorer("InnerScorer",already_exist) ;
m_OuterScorer = CheckScorer("OuterScorer",already_exist) ; m_OuterScorer = CheckScorer("OuterScorer",already_exist) ;
if(already_exist) if(already_exist)
return ; return ;
// Otherwise the scorer is initialised // Otherwise the scorer is initialised
G4VPrimitiveScorer* InnerScorer = new DSSDScorers::PS_Rectangle("InnerScorer",1, G4VPrimitiveScorer* InnerScorer = new DSSDScorers::PS_Rectangle("InnerScorer",2,
TrapezoidBaseLarge, Inner_Wafer_Length,
TrapezoidHeight, Inner_Wafer_Width,
128,128); Inner_Wafer_FrontStrips,
G4VPrimitiveScorer* OuterScorer = new DSSDScorers::PS_Rectangle("OuterScorer",1, Inner_Wafer_BackStrips);
TrapezoidBaseLarge,
TrapezoidHeight, G4VPrimitiveScorer* OuterScorer = new DSSDScorers::PS_Rectangle("OuterScorer",2,
16,16); Outer_Wafer_Length,
Outer_Wafer_Width,
Outer_Wafer_FrontStrips,
Outer_Wafer_BackStrips);
G4VPrimitiveScorer* InteractionInner = new InteractionScorers::PS_Interactions("InteractionInner",ms_InterCoord,0); G4VPrimitiveScorer* InteractionInner = new InteractionScorers::PS_Interactions("InteractionInner",ms_InterCoord,0);
G4VPrimitiveScorer* InteractionOuter = new InteractionScorers::PS_Interactions("InteractionOuter",ms_InterCoord,0); G4VPrimitiveScorer* InteractionOuter = new InteractionScorers::PS_Interactions("InteractionOuter",ms_InterCoord,0);
...@@ -674,7 +693,7 @@ void Strasse::InitializeScorers() { ...@@ -674,7 +693,7 @@ void Strasse::InitializeScorers() {
G4SDManager::GetSDMpointer()->AddNewDetector(m_InnerScorer); G4SDManager::GetSDMpointer()->AddNewDetector(m_InnerScorer);
G4SDManager::GetSDMpointer()->AddNewDetector(m_OuterScorer); G4SDManager::GetSDMpointer()->AddNewDetector(m_OuterScorer);
*/
} }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
......
...@@ -20,14 +20,18 @@ Nebula ...@@ -20,14 +20,18 @@ Nebula
Veto= 0 Veto= 0
Frame= 0 Frame= 0
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%% Telescope 1 %%%%%%%
M2Telescope %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
X1_Y1= -50.23 50.23 365 mm Nebula
X1_Y128= -50.23 -50.23 365 mm POS= 0 0 10 m
X128_Y128= 50.23 -50.23 365 mm NumberOfModule= 30
X128_Y1= 50.23 50.23 365 mm Veto= 1
SI= 1 Frame= 1
SILI= 0 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CSI= 1 Nebula
VIS= all POS= 0 0 10.15 m
NumberOfModule= 30
Veto= 0
Frame= 0
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
...@@ -19,6 +19,8 @@ Strasse Info ...@@ -19,6 +19,8 @@ Strasse Info
Inner_Wafer_PADExternal= 1 mm Inner_Wafer_PADExternal= 1 mm
Inner_Wafer_PADInternal= 1 mm Inner_Wafer_PADInternal= 1 mm
Inner_Wafer_GuardRing= 1.5 mm Inner_Wafer_GuardRing= 1.5 mm
Inner_Wafer_FrontStrips= 128
Inner_Wafer_BackStrips= 128
Inner_PCB_PortWidth= 5 mm Inner_PCB_PortWidth= 5 mm
Inner_PCB_StarboardWidth= 1 mm Inner_PCB_StarboardWidth= 1 mm
Inner_PCB_BevelAngle= 45 deg Inner_PCB_BevelAngle= 45 deg
...@@ -27,7 +29,7 @@ Strasse Info ...@@ -27,7 +29,7 @@ Strasse Info
Inner_PCB_MidWidth= 1 mm Inner_PCB_MidWidth= 1 mm
Inner_PCB_Thickness= 1.6 mm Inner_PCB_Thickness= 1.6 mm
Outer_Wafer_Length= 107 mm Outer_Wafer_Length= 107 mm
Outer_Wafer_Width= 86 mm Outer_Wafer_Width= 60 mm
Outer_Wafer_Thickness= 300 micrometer Outer_Wafer_Thickness= 300 micrometer
Outer_Wafer_AlThickness= 0.4 micrometer Outer_Wafer_AlThickness= 0.4 micrometer
Outer_Wafer_PADExternal= 1 mm Outer_Wafer_PADExternal= 1 mm
...@@ -40,76 +42,78 @@ Strasse Info ...@@ -40,76 +42,78 @@ Strasse Info
Outer_PCB_DownstreamWidth= 1 mm Outer_PCB_DownstreamWidth= 1 mm
Outer_PCB_MidWidth= 1 mm Outer_PCB_MidWidth= 1 mm
Outer_PCB_Thickness= 1.6 mm Outer_PCB_Thickness= 1.6 mm
Outer_Wafer_FrontStrips= 128
Outer_Wafer_BackStrips= 128
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%1
Strasse Inner Strasse Inner
Radius= 32 mm Radius= 30 mm
Z= 100 mm Z= 100 mm
Phi= 0 deg Phi= 0 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%2
Strasse Inner Strasse Inner
Radius= 32 mm Radius= 30 mm
Z= 100 mm Z= 100 mm
Phi= 60 deg Phi= 60 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%3
Strasse Inner Strasse Inner
Radius= 32 mm Radius= 30 mm
Z= 100 mm Z= 100 mm
Phi= 120 deg Phi= 120 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%4 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%4
Strasse Inner Strasse Inner
Radius= 32 mm Radius= 30 mm
Z= 100 mm Z= 100 mm
Phi= 180 deg Phi= 180 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%5 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%5
Strasse Inner Strasse Inner
Radius= 32 mm Radius= 30 mm
Z= 100 mm Z= 100 mm
Phi= 240 deg Phi= 240 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%6 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%6
Strasse Inner Strasse Inner
Radius= 32 mm Radius= 30 mm
Z= 100 mm Z= 100 mm
Phi= 300 deg Phi= 300 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%1
Strasse Outer Strasse Outer
Radius= 80 mm Radius= 60 mm
Z= 129 mm Z= 129 mm
Phi= 0 deg Phi= 0 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%2
Strasse Outer Strasse Outer
Radius= 80 mm Radius= 60 mm
Z= 129 mm Z= 129 mm
Phi= 60 deg Phi= 60 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%3
Strasse Outer Strasse Outer
Radius= 80 mm Radius= 60 mm
Z= 129 mm Z= 129 mm
Phi= 120 deg Phi= 120 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%4 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%4
Strasse Outer Strasse Outer
Radius= 80 mm Radius= 60 mm
Z= 129 mm Z= 129 mm
Phi= 180 deg Phi= 180 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%5 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%5
Strasse Outer Strasse Outer
Radius= 80 mm Radius= 60 mm
Z= 129 mm Z= 129 mm
Phi= 240 deg Phi= 240 deg
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%6 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%6
Strasse Outer Strasse Outer
Radius= 80 mm Radius= 60 mm
Z= 129 mm Z= 129 mm
Phi= 300 deg Phi= 300 deg
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment