Skip to content
Snippets Groups Projects
Commit 23b0f430 authored by David Emschermann's avatar David Emschermann
Browse files

add modification to build with correct radiation length, refs #2459

parent 46ea0572
No related branches found
No related tags found
Loading
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
SPDX-License-Identifier: GPL-3.0-only SPDX-License-Identifier: GPL-3.0-only
Authors: Florian Uhlig [committer] */ Authors: Florian Uhlig [committer] */
// clang-format off
#include <iostream> #include <iostream>
//#include "FairGeoMedium.h" //#include "FairGeoMedium.h"
//#include "FairGeoBuilder.h" //#include "FairGeoBuilder.h"
...@@ -29,6 +31,9 @@ void create_rich_v21a_mcbm() ...@@ -29,6 +31,9 @@ void create_rich_v21a_mcbm()
{ {
gSystem->Load("libGeom"); gSystem->Load("libGeom");
// Load FairRunSim to ensure the correct unit system
FairRunSim* sim = new FairRunSim();
TString geoFileName = "rich_v21a_mcbm.geo.root"; TString geoFileName = "rich_v21a_mcbm.geo.root";
TString topNodeName = "rich_v21a_mcbm"; TString topNodeName = "rich_v21a_mcbm";
......
...@@ -15,7 +15,7 @@ using namespace std; ...@@ -15,7 +15,7 @@ using namespace std;
// Changelog // Changelog
// 2022-03-08 - v21b - DE - Based on v21a, relocate RICH along the rail onto the 25 degree line // 2022-03-08 - v21b - DE - Based on v21a, relocate RICH along the rail onto the 25 degree line by -20 cm
// 2021-09-28 - v21a - SR - Based on v20d, moved RICH according to the TOF v21d // 2021-09-28 - v21a - SR - Based on v20d, moved RICH according to the TOF v21d
// 2020-05-25 - v20d - AW - Move mRICH by +7.2cm in Z accordingly to the mTOF movement from rev 16441 // 2020-05-25 - v20d - AW - Move mRICH by +7.2cm in Z accordingly to the mTOF movement from rev 16441
// 2020-05-20 - v20d - AW - changed positioning to +2.5cm to 25°line (nearer to beam axis) (from Analysis) // 2020-05-20 - v20d - AW - changed positioning to +2.5cm to 25°line (nearer to beam axis) (from Analysis)
...@@ -32,6 +32,9 @@ void create_rich_v21b_mcbm() ...@@ -32,6 +32,9 @@ void create_rich_v21b_mcbm()
{ {
gSystem->Load("libGeom"); gSystem->Load("libGeom");
// Load FairRunSim to ensure the correct unit system
FairRunSim* sim = new FairRunSim();
TString geoFileName = "rich_v21b_mcbm.geo.root"; TString geoFileName = "rich_v21b_mcbm.geo.root";
TString topNodeName = "rich_v21b_mcbm"; TString topNodeName = "rich_v21b_mcbm";
......
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