~mbogomilov/maus/devel3

« back to all changes in this revision

Viewing changes to src/common_cpp/Recon/Global/Track.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:
1
 
/* This file is part of MAUS: http://  micewww.pp.rl.ac.uk:8080/projects/maus
2
 
 * 
3
 
 * MAUS is free software: you can redistribute it and/or modify
4
 
 * it under the terms of the GNU General Public License as published by
5
 
 * the Free Software Foundation, either version 3 of the License, or
6
 
 * (at your option) any later version.
7
 
 * 
8
 
 * MAUS is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU General Public License for more details.
12
 
 * 
13
 
 * You should have received a copy of the GNU General Public License
14
 
 * along with MAUS.  If not, see <http://  www.gnu.org/licenses/>.
15
 
 */
16
 
 
17
 
/* Author: Peter Lane
18
 
 */
19
 
 
20
 
#include "Recon/Global/Track.hh"
21
 
 
22
 
#include "Interface/Squeak.hh"
23
 
 
24
 
namespace MAUS {
25
 
namespace recon {
26
 
namespace global {
27
 
 
28
 
Track::Track() : std::vector<TrackPoint>(), particle_id_(0)
29
 
{ }
30
 
 
31
 
Track::Track(const int particle_id)
32
 
    : std::vector<TrackPoint>(), particle_id_(particle_id)
33
 
{ }
34
 
 
35
 
Track::Track(const std::vector<TrackPoint>& tracks,
36
 
             const int particle_id)
37
 
    : std::vector<TrackPoint>(tracks), particle_id_(particle_id)
38
 
{ }
39
 
 
40
 
Track::Track(const Track & original_instance)
41
 
    : std::vector<TrackPoint>(original_instance),
42
 
      particle_id_(original_instance.particle_id_)
43
 
{ }
44
 
 
45
 
Track::~Track()
46
 
{ }
47
 
 
48
 
int Track::particle_id() const {
49
 
  return particle_id_;
50
 
}
51
 
 
52
 
void Track::set_particle_id(const int particle_id) {
53
 
  particle_id_ = particle_id;
54
 
}
55
 
 
56
 
std::ostream& operator<<(std::ostream& out, const Track& track) {
57
 
  out << track.size();
58
 
  for (size_t index = 0; index < track.size(); ++index) {
59
 
    out << std::endl << track[index];
60
 
  }
61
 
  return out;
62
 
}
63
 
 
64
 
}  // namespace global
65
 
}  // namespace recon
66
 
}  // namespace MAUS