Skip to content

Commit

Permalink
Set value of pixmx with correct type
Browse files Browse the repository at this point in the history
pixmx was changed from float to int in 5c4c5c4.
  • Loading branch information
makortel committed Jan 15, 2019
1 parent 38c4271 commit aeec82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoLocalTracker/SiPixelRecHits/src/PixelCPEGeneric.cc
Expand Up @@ -182,7 +182,7 @@ PixelCPEGeneric::localPosition(DetParam const & theDetParam, ClusterParam & theC
float locBx = theDetParam.bx;
//cout << "PixelCPEGeneric::localPosition(...) : locBz = " << locBz << endl;

theClusterParam.pixmx = -999.9; // max pixel charge for truncation of 2-D cluster
theClusterParam.pixmx = -999; // max pixel charge for truncation of 2-D cluster
theClusterParam.sigmay = -999.9; // CPE Generic y-error for multi-pixel cluster
theClusterParam.deltay = -999.9; // CPE Generic y-bias for multi-pixel cluster
theClusterParam.sigmax = -999.9; // CPE Generic x-error for multi-pixel cluster
Expand Down

0 comments on commit aeec82a

Please sign in to comment.