Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Detectors/Upgrades/ALICE3/FVD/simulation/src/Detector.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ Detector::Detector(bool active)

mDzScint = baseParam.dzscint / 2;

for (int i = 0; i <= mNumberOfRingsA + 1; i ++) {
mRingRadiiA.emplace_back(baseParam.ringsA[i]);
for (int i = 0; i <= mNumberOfRingsA + 1; i++) {
mRingRadiiA.emplace_back(baseParam.ringsA[i]);
}
for (int i = 0; i <= mNumberOfRingsC + 1; i ++) {
mRingRadiiC.emplace_back(baseParam.ringsC[i]);
for (int i = 0; i <= mNumberOfRingsC + 1; i++) {
mRingRadiiC.emplace_back(baseParam.ringsC[i]);
}

mZmodA = baseParam.zmodA;
Expand Down Expand Up @@ -252,7 +252,7 @@ void Detector::createMaterials()

int matId = 0; // tmp material id number
const int unsens = 0, sens = 1; // sensitive or unsensitive medium
//
//
int fieldType = 3; // Field type
float maxField = 5.0; // Field max.

Expand Down
Loading