CbmRoot
Loading...
Searching...
No Matches
CaTimesliceHeader.cxx
Go to the documentation of this file.
1/* Copyright (C) 2024 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Sergei Zharko [committer] */
4
9
10#include "CaTimesliceHeader.h"
11
12#include <sstream>
13
15
16// ---------------------------------------------------------------------------------------------------------------------
17//
18std::string TimesliceHeader::ToString() const
19{
20 std::stringstream msg;
21 msg << "TimesliceHeader: start = " << fStart << " [ns], end = " << fEnd << " [ns]";
22 return msg.str();
23}
A structure to keep all the common information on the timeslice coming from tracking.
Structure for keeping the current information on the timeslice.
float fStart
Start of timeslice.
std::string ToString() const
String representation of the contents.