Project
Loading...
Searching...
No Matches
RecPoints.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
14
15using namespace o2::fv0;
16
18{
19 printf(" Channel=%d | time=%f | charge=%f | adcId=%d\n", channel, time, charge, adcId);
20}
21
22void RecPoints::print() const
23{
24 printf("RecPoint data:");
25 printf("Collision times: first: %f, global mean: %f, selected mean: %f\n", getCollisionFirstTime(), getCollisionGlobalMeanTime(), getCollisionSelectedMeanTime());
26 printf("Ref first: %d, Ref entries: %d\n", mRef.getFirstEntry(), mRef.getEntries());
27 printf("Triggers: ");
28 mTriggers.print();
29}
30
31gsl::span<const ChannelDataFloat> RecPoints::getBunchChannelData(const gsl::span<const ChannelDataFloat> tfdata) const
32{
33 // extract the span of channel data for this bunch from the whole TF data
34 return mRef.getEntries() ? gsl::span<const ChannelDataFloat>(tfdata).subspan(mRef.getFirstEntry(), mRef.getEntries()) : gsl::span<const ChannelDataFloat>();
35}
Definition of the FV0 RecPoints class.
std::string print() const
Definition Triggers.cxx:18
float getCollisionGlobalMeanTime() const
Definition RecPoints.h:71
void print() const
Definition RecPoints.cxx:22
float getCollisionSelectedMeanTime() const
Definition RecPoints.h:72
float getCollisionFirstTime() const
Definition RecPoints.h:70
gsl::span< const ChannelDataFloat > getBunchChannelData(const gsl::span< const ChannelDataFloat > tfdata) const
Definition RecPoints.cxx:31