Skip to content
Snippets Groups Projects

clang-format of algo/ca

Merged Sergey Gorbunov requested to merge se.gorbunov/cbmroot:dev into master
78 files
+ 948
697
Compare changes
  • Side-by-side
  • Inline
Files
78
@@ -21,7 +21,7 @@ namespace cbm::algo::ca
/// The class describes a combinatorial branch of the CA tracker
///
class Branch {
public:
public:
/// default constructor
Branch() { fHits.reserve(25); }
@@ -55,15 +55,15 @@ namespace cbm::algo::ca
return (Chi2() <= b.Chi2());
}
private:
private:
///------------------------------
/// Data members
int fStation {0};
fscal fChi2 {0.};
int fId {0};
bool fIsAlive {0};
Vector<ca::HitIndex_t> fHits {"Branch::fHits"};
int fStation{0};
fscal fChi2{0.};
int fId{0};
bool fIsAlive{0};
Vector<ca::HitIndex_t> fHits{"Branch::fHits"};
};
} // namespace cbm::algo::ca
Loading