Skip to content

Commit 5bb1ee7

Browse files
committed
fix parameter + update number of sensors in macro
1 parent 79b4e9c commit 5bb1ee7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Detectors/Upgrades/ALICE3/IOTOF/base/include/IOTOFBase/IOTOFBaseParam.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct OTOFChipSpecifics : ChipSpecifics {
5858
PitchCol = 250.00e-4;
5959
PitchRow = 100.00e-4;
6060
PassiveEdgeTop = 50.e-4;
61-
PassiveEdgeSide = 115.74e-4;
61+
PassiveEdgeSide = 115.8e-4;
6262
SensorLayerThicknessEff = 50.e-4;
6363
SensorLayerThickness = 50.e-4;
6464
}

Detectors/Upgrades/ALICE3/IOTOF/macros/CheckDigitsIOTOF.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ void CheckDigitsIOTOF(std::string digifile = "tf3digits.root", std::string hitfi
217217
row, col, /// row and col retrieved from the hit: hit global position -> hit local position -> detector position (row, col)
218218
locH.X(), locH.Z(), /// x and z of the hit in the local reference frame: hit global position -> hit local position
219219
xlc, zlc, /// x and z of the hit in the local frame: hit global position -> hit local position -> detector position (row, col) -> local position
220-
locH.X() - locD.X(), locH.Z() - locD.Z()); /// difference in x and z between the hit and the digit in the local frame
220+
locH.X() - locD.X(), locH.Z() - locD.Z()); /// difference in x and z between the hit and the digit in the local frame
221221
nt2->Fill(chipID, gloD.Z(), locHS.X() - locHE.X(), locHS.Z() - locHE.Z()); /// differences between local hit start and hit end positions
222222

223223
} // end loop on digits array

0 commit comments

Comments
 (0)