Skip to content

Commit

Permalink
Clang-Format
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsbuild committed Feb 11, 2020
1 parent 6ba826d commit f6b4201
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions RecoLocalTracker/SiPixelRecHits/interface/PixelCPEGeneric.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ class PixelCPEGeneric final : public PixelCPEBase {
float eff_charge_cut_low, //!< Use edge if > W_eff (in pix) &&&
float eff_charge_cut_high, //!< Use edge if < W_eff (in pix) &&&
float size_cut //!< Use edge when size == cuts
) const;
) const;

void collect_edge_charges(ClusterParam &theClusterParam, //!< input, the cluster
int &Q_f_X, //!< output, Q first in X
int &Q_l_X, //!< output, Q last in X
int &Q_f_Y, //!< output, Q first in Y
int &Q_l_Y //!< output, Q last in Y
) const;
) const;

//--- Errors squared in x and y. &&& Need to be revisited.
float err2X(bool &, int &) const;
Expand Down
4 changes: 2 additions & 2 deletions RecoLocalTracker/SiPixelRecHits/src/PixelCPEGeneric.cc
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ float PixelCPEGeneric::generic_position_formula(int size, //!
float eff_charge_cut_low, //!< Use edge if > W_eff &&&
float eff_charge_cut_high, //!< Use edge if < W_eff &&&
float size_cut //!< Use edge when size == cuts
) const {
) const {
//cout<<" in PixelCPEGeneric:generic_position_formula - "<<endl; //dk

float geom_center = 0.5f * (upper_edge_first_pix + lower_edge_last_pix);
Expand Down Expand Up @@ -522,7 +522,7 @@ void PixelCPEGeneric::collect_edge_charges(ClusterParam& theClusterParamBase, /
int& Q_l_X, //!< output, Q last in X
int& Q_f_Y, //!< output, Q first in Y
int& Q_l_Y //!< output, Q last in Y
) const {
) const {
ClusterParamGeneric& theClusterParam = static_cast<ClusterParamGeneric&>(theClusterParamBase);

// Initialize return variables.
Expand Down
4 changes: 3 additions & 1 deletion RecoMuon/MuonSeedGenerator/src/MuonDTSeedFromRecHits.cc
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ void MuonDTSeedFromRecHits::computePtWithoutVtx(double* pt, double* spt) const {
pt[7] = thispt;
break;
}
default: { break; }
default: {
break;
}
}
}
}
Expand Down

0 comments on commit f6b4201

Please sign in to comment.