Skip to content
Snippets Groups Projects

Add time based digitization and reconstruction for MVD

Merged Florian Uhlig requested to merge mvdsoft/cbmroot:timebased_mvd into master
Files
30
@@ -13,15 +13,16 @@ using std::map;
@@ -13,15 +13,16 @@ using std::map;
using std::pair;
using std::pair;
// ----- Default constructor -------------------------------------------
// ----- Default constructor -------------------------------------------
CbmMvdCluster::CbmMvdCluster() : CbmCluster(), fPixelMap(), fRefId(-1), fClusterCharge(0) {}
CbmMvdCluster::CbmMvdCluster() : CbmCluster(), fPixelMap(), fRefId(-1), fClusterCharge(0) { fEarliestFrameNumber = -1; }
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
CbmMvdCluster::CbmMvdCluster(const CbmMvdCluster& rhs) : CbmCluster(), fPixelMap(), fRefId(-1), fClusterCharge(0)
CbmMvdCluster::CbmMvdCluster(const CbmMvdCluster& rhs) : CbmCluster(), fPixelMap(), fRefId(-1), fClusterCharge(0)
{
{
fPixelMap = rhs.fPixelMap;
fPixelMap = rhs.fPixelMap;
fRefId = rhs.fRefId;
fRefId = rhs.fRefId;
fClusterCharge = rhs.fClusterCharge;
fClusterCharge = rhs.fClusterCharge;
 
fEarliestFrameNumber = rhs.fEarliestFrameNumber;
}
}
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
Loading