File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Detectors/Upgrades/ALICE3/TRK
reconstruction/include/TRKReconstruction Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 3838#include "Framework/Logger.h"
3939#endif
4040
41-
42-
4341void CheckClusters (const std ::string & clusfile = "o2clus_trk.root" ,
4442 const std ::string & hitfile = "o2sim_HitsTRK.root" ,
4543 const std ::string & inputGeom = "o2sim_geometry.root" ,
@@ -114,8 +112,8 @@ void CheckClusters(const std::string& clusfile = "o2clus_trk.root",
114112 //
115113 // ──────────────────────────────────────────────────────────────────────────
116114 const float halfThicknessMLOT = o2 ::trk ::SegmentationChip ::SiliconThicknessMLOT / 2.f ;
117- const float yPlaneVD = (float )o2 ::trk ::constants ::alice3resp ::responseYShift ; // VD: collection plane 5 µm inside outer (entry) face in flat local frame
118- const float yPlaneMLOT = halfThicknessMLOT - depthMax ; // MLOT: entry @ +halfThick, collection depthMax below entry
115+ const float yPlaneVD = (float )o2 ::trk ::constants ::alice3resp ::responseYShift ; // VD: collection plane 5 µm inside outer (entry) face in flat local frame
116+ const float yPlaneMLOT = halfThicknessMLOT - depthMax ; // MLOT: entry @ +halfThick, collection depthMax below entry
119117 LOGP (info , "Response depthMax = {:.4f} cm | VD Y-plane = {:.4f} cm | ML/OT Y-plane = {:.4f} cm" ,
120118 depthMax , yPlaneVD , yPlaneMLOT );
121119
Original file line number Diff line number Diff line change @@ -90,8 +90,8 @@ class Clusterer
9090 // column buffers (pre-cluster state); extra sentinel entries at [0] and [size-1]
9191 int * column1 = nullptr ;
9292 int * column2 = nullptr ;
93- int * curr = nullptr ; // /< current column pre-cluster indices
94- int * prev = nullptr ; // /< previous column pre-cluster indices
93+ int * curr = nullptr ; // /< current column pre-cluster indices
94+ int * prev = nullptr ; // /< previous column pre-cluster indices
9595 int size = constants::moduleMLOT::chip::nRows + 2 ; // /< reallocated per chip in initChip
9696
9797 // pixels[i] = {next_in_chain, global_digit_index}
@@ -101,7 +101,7 @@ class Clusterer
101101 uint16_t currCol = 0xffff ;
102102 bool noLeftCol = true ;
103103
104- std::array<Label, MaxLabels> labelsBuff; // /< MC label buffer for one cluster
104+ std::array<Label, MaxLabels> labelsBuff; // /< MC label buffer for one cluster
105105 std::vector<std::pair<uint16_t , uint16_t >> pixArrBuff; // /< (row,col) pixel buffer for pattern
106106
107107 // per-thread output (accumulated, then merged back by caller)
You can’t perform that action at this time.
0 commit comments