// McCluster.cpp #include "McCluster.h" using trf::McCluster; using trf::McIdList; //********************************************************************** // Constructor. McCluster::McCluster() { } //********************************************************************** // Constructor. McCluster::McCluster(const McIdList& mcids) : _mcids(mcids) { } //********************************************************************** // Copy constructor. McCluster::McCluster(const McCluster& rhs) : _mcids(rhs._mcids) { } //********************************************************************** // Return the ID's of MC tracks contributing to this cluster. const McIdList& McCluster::get_mc_ids() const { return _mcids; } //**********************************************************************