Skip to content

Commit

Permalink
Merge pull request #11757 from Dr15Jones/constStaticClusterFP420
Browse files Browse the repository at this point in the history
Changed static to const in ClusterFP420
  • Loading branch information
davidlange6 committed Oct 15, 2015
2 parents b8132ab + 4e85f6a commit 36f9514
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DataFormats/FP420Cluster/src/ClusterFP420.cc
Expand Up @@ -16,8 +16,8 @@ using namespace std;
//static float const_ps1s2[3] = {0.050,.0139,0.0045};// pitch, sigma_1channelCluster, sigma_2channelsCluster - Narrow , mm
//static float constW_ps1s2[3] = {0.400,.0920,0.0280};// pitch, sigma_1channelCluster, sigma_2channelsCluster - Wide , mm

static float const_ps1s2[3] = {0.050,.0135,0.0086};// pitch, sigma_1channelCluster, sigma_2channelsCluster - Narrow , mm
static float constW_ps1s2[3] = {0.400,.1149,0.0648};// pitch, sigma_1channelCluster, sigma_2channelsCluster - Wide , mm
static float const const_ps1s2[3] = {0.050,.0135,0.0086};// pitch, sigma_1channelCluster, sigma_2channelsCluster - Narrow , mm
static float const constW_ps1s2[3] = {0.400,.1149,0.0648};// pitch, sigma_1channelCluster, sigma_2channelsCluster - Wide , mm

// sense of xytype here is X or Y type planes. Now we are working with X only, i.e. xytype=2
ClusterFP420::ClusterFP420( unsigned int detid, unsigned int xytype, const HDigiFP420Range& range,
Expand Down

0 comments on commit 36f9514

Please sign in to comment.