~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to src/common_cpp/Recon/SciFi/SciFiSpacePointRec.cc

  • Committer: Durga Rajaram
  • Date: 2014-07-16 15:13:05 UTC
  • mfrom: (659.1.92 cand)
  • Revision ID: durga@fnal.gov-20140716151305-q27rv1y9p03v9lks
Tags: MAUS-v0.9, MAUS-v0.9.0
MAUS-v0.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
// Given 3 input clusters, this function computes all the triplet variables,
183
183
// like position and respective standard deviation
184
184
void SciFiSpacePointRec::build_triplet(SciFiSpacePoint* triplet) {
185
 
  std::vector<SciFiCluster*> channels = triplet->get_channels();
 
185
  std::vector<SciFiCluster*> channels = triplet->get_channels_pointers();
186
186
  SciFiCluster *vcluster = channels[0];
187
187
  SciFiCluster *wcluster = channels[1];
188
188
  SciFiCluster *ucluster = channels[2];
236
236
}
237
237
 
238
238
void SciFiSpacePointRec::build_duplet(SciFiSpacePoint* duplet) {
239
 
  std::vector<SciFiCluster*> channels = duplet->get_channels();
 
239
  std::vector<SciFiCluster*> channels = duplet->get_channels_pointers();
240
240
  SciFiCluster *clusterA = channels[0];
241
241
  SciFiCluster *clusterB = channels[1];
242
242