Skip to content

Commit

Permalink
Fixed friend class bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerio Pia committed Oct 15, 2024
1 parent 4162f5c commit cdef53d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions include/SANDKalmanFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ struct SParticleInfo {
TVector3 mom;
};

class SANDKFUtils;

using SANDKFStateCovarianceMatrix = TMatrixD;
using SANDKFMeasurement = TMatrixD;
Expand Down Expand Up @@ -213,7 +212,6 @@ class SANDKalmanFilterManager {
void Run();
const SANDKFTrack& GetTrack() {return fThisTrack; };

friend class SANDKFUtils;
};

#endif
1 change: 1 addition & 0 deletions src/SANDTrackerClustersContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ void SANDTrackerClustersByProximity::Clusterize(const std::vector<SANDTrackerDig
fMap[SANDTrackerCellID(d())] = d;
});

// To Do: should be a a config paramenter
int cluster_size = 3;
for (auto it = fMap.begin(); it != fMap.end(); it++) {
std::vector<SANDTrackerDigitID> current_cluster = {it->second};
Expand Down

0 comments on commit cdef53d

Please sign in to comment.