Skip to content

Commit

Permalink
don't change the names of variables being used in existing plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
William McGinley committed Jun 24, 2018
1 parent e81a5b1 commit 3c75227
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libraries/BCAL/DBCALCluster.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class DBCALCluster : public JObject {
// this is the time at the inner radius of BCAL assuming shower
// particles propagte into module at the speed of light
float t() const { return m_t; }
float sigTime() const { return m_sig_t; }
float sigT() const { return m_sig_t; }
float rmsTime() const { return m_t_rms; }

// assuming a photon leaving the target, this the estimate of t0
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/BCAL/DBCALShower_factory_IU.cc
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ DBCALShower_factory_IU::evnt( JEventLoop *loop, uint64_t eventnumber ){
shower->sigLong = (**clItr).sigRho();
shower->sigTrans = (**clItr).sigPhi();
shower->sigTheta = (**clItr).sigTheta();
// shower->sigTime = (**clItr).sigTime();
// shower->sigTime = (**clItr).sigT();
shower->rmsTime = (**clItr).rmsTime();

shower->N_cell = (**clItr).nCells();
Expand Down

0 comments on commit 3c75227

Please sign in to comment.