CbmRoot
Loading...
Searching...
No Matches
TimesliceMetaData.cxx
Go to the documentation of this file.
1/* Copyright (C) 2019-2020 Facility for Antiproton and Ion Research in Europe, Darmstadt
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Pierre-Alain Loizeau [committer] */
4
5#include "TimesliceMetaData.h"
6
7#include <TObject.h> // for TObject
8
9TimesliceMetaData::TimesliceMetaData(uint64_t ulStart, uint64_t ulDur, uint64_t ulOverDur, uint64_t ulIndex)
10 : TObject()
11 , fulStartTimeNs(ulStart)
12 , fulDurationNs(ulDur)
13 , fulOverlapNs(ulOverDur)
14 , fulIndex(ulIndex)
15{
16 ;
17}
TimesliceMetaData(uint64_t ulStart=0, uint64_t ulDur=12800000, uint64_t ulOverDur=1280000, uint64_t ulIndex=0)