Project
Loading...
Searching...
No Matches
CTF.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#include "DataFormatsFT0/CTF.h"
13
14using namespace o2::ft0;
15
18{
19 trigger.clear();
20 bcInc.clear();
21 orbitInc.clear();
22 nChan.clear();
23 eventStatus.clear();
24
25 idChan.clear();
26 qtcChain.clear();
27 cfdTime.clear();
28 qtcAmpl.clear();
29
30 header.nTriggers = 0;
32 header.firstBC = 0;
33}
Definitions for FT0 CTF data.
uint32_t firstOrbit
number of triggers in TF
Definition CTF.h:31
uint16_t firstBC
1st orbit of TF
Definition CTF.h:32
uint32_t nTriggers
Definition CTF.h:30
std::vector< uint8_t > trigger
Definition CTF.h:43
std::vector< uint8_t > idChan
Definition CTF.h:50
std::vector< uint8_t > eventStatus
Definition CTF.h:47
std::vector< int16_t > bcInc
Definition CTF.h:44
std::vector< uint8_t > nChan
Definition CTF.h:46
std::vector< int32_t > orbitInc
Definition CTF.h:45
std::vector< int32_t > qtcAmpl
Definition CTF.h:52
std::vector< int16_t > cfdTime
Definition CTF.h:51
std::vector< uint8_t > qtcChain
Definition CTF.h:53