Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Apr 25, 2024
1 parent 9a72843 commit 94c0b4f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Common/SimConfig/include/SimConfig/SimConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ struct SimConfigData {
bool mAsService = false; // if simulation should be run as service/deamon (does not exit after run)
bool mNoGeant = false; // if Geant transport should be turned off (when one is only interested in the generated events)
bool mIsUpgrade = false; // true if the simulation is for Run 5
bool mWithIT3 = false; // true if simulation should use IT3
bool mWithIT3 = false; // true if simulation should use IT3
std::string mFromCollisionContext = ""; // string denoting a collision context file; If given, this file will be used to determine number of events
bool mForwardKine = false; // true if tracks and event headers are to be published on a FairMQ channel (for reading by other consumers)
bool mWriteToDisc = true; // whether we write simulation products (kine, hits) to disc
Expand Down
2 changes: 1 addition & 1 deletion Detectors/GlobalTracking/src/MatchTPCITS.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ void MatchTPCITS::init()
#endif

if (mParams->runAfterBurner) { // only used in AfterBurner
mRGHelper.init(); // prepare helper for TPC track / ITS clusters matching
mRGHelper.init(); // prepare helper for TPC track / ITS clusters matching
}

clear();
Expand Down
12 changes: 6 additions & 6 deletions Detectors/ITSMFT/ITS/reconstruction/src/RecoGeomHelper.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ void RecoGeomHelper::RecoChip::updateLimits(const o2::math_utils::Point3D<float>
void RecoGeomHelper::RecoChip::print() const
{
LOGF(info, "Ch#%4d Alp: %+.3f X:%5.2f %+6.3f<y<%+6.3f %+6.3f<z<%+6.3f | XYEdges: {%+6.3f,%+6.3f}{%+6.3f,%+6.3f}\n",
id, alp, xRef, yRange.getMin(), yRange.getMax(), zRange.getMin(), zRange.getMax(),
xyEdges.getX0(), xyEdges.getY0(), xyEdges.getX1(), xyEdges.getY1());
id, alp, xRef, yRange.getMin(), yRange.getMax(), zRange.getMin(), zRange.getMax(),
xyEdges.getX0(), xyEdges.getY0(), xyEdges.getX1(), xyEdges.getY1());
}

//_____________________________________________________________________
Expand Down Expand Up @@ -79,9 +79,9 @@ void RecoGeomHelper::RecoLadder::print() const
{
assert(overlapWithNext != Undefined || chips.size() == 0); // make sure there are no undefined ladders after init is done
LOGF(info, "Ladder %3d %.3f<phi[<%.3f>]<%.3f dPhiH:%.3f | XYEdges: {%+6.3f,%+6.3f}{%+6.3f,%+6.3f} | %3d chips | OvlNext: %s\n",
id, phiRange.getMin(), phiMean, phiRange.getMax(), dphiH,
xyEdges.getX0(), xyEdges.getY0(), xyEdges.getX1(), xyEdges.getY1(), (int)chips.size(),
overlapWithNext == Undefined ? "N/A" : ((overlapWithNext == NoOverlap ? "NO" : (overlapWithNext == Above ? "Above" : "Below"))));
id, phiRange.getMin(), phiMean, phiRange.getMax(), dphiH,
xyEdges.getX0(), xyEdges.getY0(), xyEdges.getX1(), xyEdges.getY1(), (int)chips.size(),
overlapWithNext == Undefined ? "N/A" : ((overlapWithNext == NoOverlap ? "NO" : (overlapWithNext == Above ? "Above" : "Below"))));
for (const auto& ch : chips) {
ch.print();
}
Expand Down Expand Up @@ -222,7 +222,7 @@ void RecoGeomHelper::RecoLayer::updateLimits(const o2::math_utils::Point3D<float
void RecoGeomHelper::RecoLayer::print() const
{
LOGF(info, "\nLayer %d %.2f<r<%.2f %+.2f<z<%+.2f %d ladders\n",
id, rRange.getMin(), rRange.getMax(), zRange.getMin(), zRange.getMax(), (int)ladders.size());
id, rRange.getMin(), rRange.getMax(), zRange.getMin(), zRange.getMax(), (int)ladders.size());
for (const auto& ld : ladders) {
ld.print();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class TRDGlobalTracking : public o2::framework::Task
#ifdef ENABLE_UPGRADES
const o2::its3::TopologyDictionary* mIT3Dict = nullptr; ///< IT3 cluster patterns dictionary
#endif
bool mWithIT3{false}; ///< running with IT3
bool mWithIT3{false}; ///< running with IT3
std::array<float, 5> mCovDiagInner{}; ///< total cov.matrix extra diagonal error from TrackTuneParams
std::array<float, 5> mCovDiagOuter{}; ///< total cov.matrix extra diagonal error from TrackTuneParams
// PID
Expand Down

0 comments on commit 94c0b4f

Please sign in to comment.