Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Running code-format for reco #28927

Merged
merged 1 commit into from
Feb 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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