Skip to content

Commit 03bf67c

Browse files
committed
Remove now stale info statements. TODO: let staves be cut as well on nominal radii
1 parent 99a136e commit 03bf67c

1 file changed

Lines changed: 1 addition & 24 deletions

File tree

Detectors/Upgrades/ALICE3/FT3/simulation/src/FT3Module.cxx

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,11 @@ void FT3Module::fill_stave(PosNegPositionTypes& y_positions, double Rin, double
181181
// given starting y is acceptable, start there
182182
y_top = y_ranges.first.first;
183183
}
184-
LOG(info) << "\tFT3Module: Filling stave at x = " << x_left << " with sensors starting at y = " << y_top
185-
<< " with stack height " << kSensorStack;
184+
// fill positive y sensor positions
186185
while ( (y_top + sensorStackHeight) <= max_sensor_y_abs ) {
187186
y_positions.first.emplace_back(y_top, kSensorStack);
188187
y_top += sensorAbsStackYShift;
189188
}
190-
LOG(info) << "\t\tFilled until y = " << y_top;
191189

192190
// now we do the same for the negative y positions
193191
// they do not have to be exactly mirrored, hence done separately
@@ -203,14 +201,11 @@ void FT3Module::fill_stave(PosNegPositionTypes& y_positions, double Rin, double
203201
// given starting y is acceptable, start there
204202
y_bottom = y_ranges.second.first;
205203
}
206-
LOG(info) << "\tFT3Module: Filling stave at x = " << x_left << " with sensors starting at y = " << y_bottom
207-
<< " with stack height " << kSensorStack;
208204
// fill in the sensors on negative y
209205
while ( (y_bottom - sensorStackHeight) >= -max_sensor_y_abs ) {
210206
y_positions.second.emplace_back(y_bottom, kSensorStack);
211207
y_bottom -= sensorAbsStackYShift;
212208
}
213-
LOG(info) << "\t\tFilled until y = " << y_bottom;
214209
}
215210

216211
/*
@@ -336,9 +331,6 @@ void FT3Module::addStaveVolume(
336331
*volume_count,
337332
combiTrans);
338333
(*volume_count)++;
339-
LOG(info) << "\tFT3Module: Added stave volume " << volumeName
340-
<< " at x = " << x_mid << ", y = " << y_mid << ", z = " << z_shift
341-
<< " with length " << staveLengthToUse;
342334
}
343335

344336
/*
@@ -547,9 +539,6 @@ void FT3Module::create_layout_staveGeo(double mZ, int layerNumber, int direction
547539
mirrorStaveAroundX = y_midpoint_it->second.second;
548540
y_ranges.first = {y_midpoint - stave_half_length, y_midpoint + stave_half_length};
549541
y_ranges.second = {-y_midpoint + stave_half_length, -y_midpoint - stave_half_length};
550-
LOG(info) << "Stave " << staveID << " has defined midpoint at y = " << y_midpoint
551-
<< ", y_ranges=(" << y_ranges.first.first << ", " << y_ranges.first.second
552-
<< ") & (" << y_ranges.second.first << ", " << y_ranges.second.second << ")";
553542
}
554543

555544
// Define tolerances for cutting staves and placing sensors
@@ -569,9 +558,6 @@ void FT3Module::create_layout_staveGeo(double mZ, int layerNumber, int direction
569558
std::string stave_volume_name =
570559
"Stave_" + std::to_string(i_stave) + "_" + std::to_string(layerNumber) +
571560
"_" + std::to_string(direction);
572-
LOG(info) << "\tFT3Module: Adding stave volume " << stave_volume_name
573-
<< " at x = " << Constants::x_midpoints[i_stave] << ", y = " << y_midpoint
574-
<< ", z = " << mZ + z_stave_shift_abs;
575561
addStaveVolume(
576562
motherVolume, stave_volume_name, direction, &volume_count,
577563
Constants::y_lengths[i_stave], tolerance_inner, tolerance_outer,
@@ -598,9 +584,6 @@ void FT3Module::create_layout_staveGeo(double mZ, int layerNumber, int direction
598584
}
599585
// Now create the mirrored stave
600586
if (mirrorStaveAroundXAxis) {
601-
LOG(info) << "\tFT3Module: Adding stave volume " << stave_volume_name
602-
<< " at x = " << Constants::x_midpoints[i_stave] << ", y = " << y_midpoint
603-
<< ", z = " << mZ + z_stave_shift_abs;
604587
addStaveVolume(
605588
motherVolume, stave_volume_name + "_mirrored", direction, &volume_count,
606589
Constants::y_lengths[i_stave], tolerance_inner, tolerance_outer,
@@ -666,12 +649,6 @@ void FT3Module::create_layout_staveGeo(double mZ, int layerNumber, int direction
666649
motherVolume, layerNumber, direction, &volume_count,
667650
x_mid + Constants::active_width / 2, y_mid, z_mid, false
668651
);
669-
if (i_stave == 3) {
670-
LOG(info) << "\tFT3Module: Adding sensor on "
671-
<< (y_sign == 0 ? "positive" : "negative") << " y side, sensor "
672-
<< i_sens << " out of " << positions[i_y_pos].second << " at y = " << y_mid;
673-
}
674-
675652
// ------------ (2) Epoxy glue layer between silicon and copper (FPC) ------------
676653
z_mid = z_offset_to_glue_Si * z_offset_multiplier + z_stave_shift;
677654
add2x1GlueVolume(

0 commit comments

Comments
 (0)