~chris-rogers/maus/emr_mc_digitization

« back to all changes in this revision

Viewing changes to tests/cpp_unit/Plotting/SciFi/TrackerDataManagerTest.cc

  • Committer: Chris Rogers
  • Date: 2014-04-16 11:48:45 UTC
  • mfrom: (707 merge)
  • mto: This revision was merged to the branch mainline in revision 711.
  • Revision ID: chris.rogers@stfc.ac.uk-20140416114845-h3u3q7pdcxkxvovs
Update to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include "src/common_cpp/DataStructure/SciFiSpacePoint.hh"
35
35
#include "src/common_cpp/DataStructure/SciFiStraightPRTrack.hh"
36
36
#include "src/common_cpp/DataStructure/SciFiHelicalPRTrack.hh"
37
 
#include "src/common_cpp/Recon/SciFi/TrackerDataManager.hh"
38
 
#include "src/common_cpp/Recon/SciFi/TrackerDataPlotterInfoBox.hh"
 
37
#include "src/common_cpp/Plotting/SciFi/TrackerDataManager.hh"
 
38
#include "src/common_cpp/Plotting/SciFi/TrackerDataPlotterInfoBox.hh"
39
39
 
40
40
namespace MAUS {
41
41
 
49
49
 
50
50
TEST_F(TrackerDataManagerTest, TestConstructor) {
51
51
  TrackerDataManager tdm;
52
 
  EXPECT_TRUE(tdm._print_tracks);
53
 
  EXPECT_TRUE(tdm._print_seeds);
 
52
  EXPECT_FALSE(tdm._print_tracks);
 
53
  EXPECT_FALSE(tdm._print_seeds);
54
54
}
55
55
 
56
56
TEST_F(TrackerDataManagerTest, TestDraw) {
154
154
 
155
155
  Spill* spill = new Spill();
156
156
  ReconEvent* revt = NULL;
157
 
  ReconEventArray* revts = new ReconEventArray();
 
157
  ReconEventPArray* revts = new ReconEventPArray();
158
158
  revts->push_back(revt);
159
159
  spill->SetReconEvents(revts);
160
160