~mwinter4/maus/ckov-reco

« back to all changes in this revision

Viewing changes to tests/cpp_unit/Recon/Kalman/KalmanStateTest.cc

  • Committer: Durga Rajaram
  • Date: 2014-01-14 07:07:02 UTC
  • mfrom: (659.1.80 relcand)
  • Revision ID: durga@fnal.gov-20140114070702-2l1fuj1w6rraw7xe
Tags: MAUS-v0.7.6
MAUS-v0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
 
156
156
  // Bad requests
157
157
  EXPECT_THROW(a_site.set_chi2(0., MAUS::KalmanState::Initialized),
158
 
               Squeal);
 
158
               MAUS::Exception);
159
159
  EXPECT_THROW(a_site.set_covariance_residual(covariance_residual, MAUS::KalmanState::Initialized),
160
 
               Squeal);
 
160
               MAUS::Exception);
161
161
  EXPECT_THROW(a_site.set_residual(smoothed_residual, MAUS::KalmanState::Initialized),
162
 
               Squeal);
 
162
               MAUS::Exception);
163
163
  EXPECT_THROW(a_site.set_covariance_matrix(covariance_residual, MAUS::KalmanState::Initialized),
164
 
               Squeal);
 
164
               MAUS::Exception);
165
165
}
166
166
}