Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Common/DataModel/ZDCInterCalib.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ namespace o2::aod
{
namespace znoutput
{
DECLARE_SOA_COLUMN(tdcZNA, ZNAtime, float); //! ZNA tdc value
DECLARE_SOA_COLUMN(tdcZNC, ZNCtime, float); //! ZNC tdc value
DECLARE_SOA_COLUMN(tdcZNA, ZNAtime, float); //! ZNA tdc value
DECLARE_SOA_COLUMN(tdcZNC, ZNCtime, float); //! ZNC tdc value
DECLARE_SOA_COLUMN(pmcZNA, ZNAcommonPM, float); //! PMC ZNA
DECLARE_SOA_COLUMN(pm1ZNA, ZNAPM1, float); //! PM1 ZNA
DECLARE_SOA_COLUMN(pm2ZNA, ZNAPM2, float); //! PM2 ZNA
Expand Down
5 changes: 2 additions & 3 deletions Common/TableProducer/zdc-task-intercalib.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ struct zdcInterCalib {
//
bool isZNChit = true;
bool isZNAhit = true;
if(!TDCcut) {
if (!TDCcut) {
if (pmcZNC < kVeryNegative) {
pmcZNC = kVeryNegative;
isZNChit = false;
Expand All @@ -99,8 +99,7 @@ struct zdcInterCalib {
pmcZNA = kVeryNegative;
isZNAhit = false;
}
}
else {
} else {
if ((tdcZNC < tdcZNmincut) || (tdcZNC > tdcZNmaxcut))
isZNChit = false;
if ((tdcZNA < tdcZNmincut) || (tdcZNA > tdcZNmaxcut))
Expand Down
Loading