From 50cd066267d0041956d7bf9238665e5dc006c524 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Wed, 19 Dec 2012 14:52:21 +0100 Subject: [PATCH] Added a printout when the tracking itself starts and stops. --- mtp.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mtp.cc b/mtp.cc index c6d31b3..c982fae 100644 --- a/mtp.cc +++ b/mtp.cc @@ -46,7 +46,9 @@ int main(int argc, char **argv) { cout << "Read " << argv[1] << endl; tracker->build_graph(); + cout << "Starting to track ... "; cout.flush(); tracker->track(); + cout << "done." << endl; ofstream out_traj("result.trj"); tracker->write_trajectories(&out_traj); -- 2.20.1