Project
Loading...
Searching...
No Matches
Channel.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.
12
13using namespace o2::emcal;
14
15int Channel::getBranchIndex() const
16{
17 if (mHardwareAddress == -1) {
19 }
20 return getBranchIndexFromHwAddress(mHardwareAddress);
21}
22
24{
25 if (mHardwareAddress == -1) {
27 }
28 return getFecIndexFromHwAddress(mHardwareAddress);
29}
30
32{
33 if (mHardwareAddress == -1) {
35 }
36 return getAltroIndexFromHwAddress(mHardwareAddress);
37}
38
40{
41 if (mHardwareAddress == -1) {
43 }
44 return getChannelIndexFromHwAddress(mHardwareAddress);
45}
46
47Bunch& Channel::createBunch(uint8_t bunchlength, uint8_t starttime)
48{
49 mBunches.emplace_back(bunchlength, starttime);
50 return mBunches.back();
51}
ALTRO bunch information.
Definition Bunch.h:40
Handling of uninitialized hardware addresses.
Definition Channel.h:51
static int getAltroIndexFromHwAddress(int hwaddress)
Extracting ALTRO index from the hardware address.
Definition Channel.h:167
static int getChannelIndexFromHwAddress(int hwaddress)
Extracting Channel index in FEC from the hardware address.
Definition Channel.h:171
int getChannelIndex() const
Provide the channel index for the current hardware address.
Definition Channel.cxx:39
static int getFecIndexFromHwAddress(int hwaddress)
Extracting FEC index in branch from the hardware address.
Definition Channel.h:163
int getFECIndex() const
Provide the front-end card index (0-9) in branch for the current hardware address.
Definition Channel.cxx:23
int getAltroIndex() const
Provide the altro chip index for the current hardware address.
Definition Channel.cxx:31
static int getBranchIndexFromHwAddress(int hwaddress)
Extracting branch index from the hardware address.
Definition Channel.h:159
Bunch & createBunch(uint8_t bunchlength, uint8_t starttime)
Create and initialize a new bunch and return reference to it.
Definition Channel.cxx:47