Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PWGCF - Calibration study of ZDC SP for charge dependent flow studies #8136

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
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
56 changes: 56 additions & 0 deletions PWGCF/DataModel/SPTableZDC.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

/// \file SPTableZDC.h

#ifndef PWGCF_DATAMODEL_SPTABLEZDC_H_
#define PWGCF_DATAMODEL_SPTABLEZDC_H_

#include <cmath>

#include "Common/DataModel/PIDResponse.h"
#include "Common/Core/RecoDecay.h"
#include "Common/DataModel/TrackSelectionTables.h"
#include "Framework/AnalysisDataModel.h"

namespace o2::aod
{
namespace sptablezdc
{
DECLARE_SOA_COLUMN(Runnumber, runnumber, int);
DECLARE_SOA_COLUMN(Cent, cent, float);
DECLARE_SOA_COLUMN(Vx, vx, float);
DECLARE_SOA_COLUMN(Vy, vy, float);
DECLARE_SOA_COLUMN(Vz, vz, float);
DECLARE_SOA_COLUMN(QXA, qxA, float);
DECLARE_SOA_COLUMN(QXC, qxC, float);
DECLARE_SOA_COLUMN(QYA, qyA, float);
DECLARE_SOA_COLUMN(QYC, qyC, float);
// keep track of where we are in steps and iterations.
DECLARE_SOA_COLUMN(Iteration, iteration, int);
DECLARE_SOA_COLUMN(Step, step, int);

} // namespace sptablezdc

DECLARE_SOA_TABLE(SPTableZDC, "AOD", "SPZDC",
sptablezdc::Runnumber,
sptablezdc::Cent,
sptablezdc::Vx,
sptablezdc::Vy,
sptablezdc::Vz,
sptablezdc::QXA,
sptablezdc::QXC,
sptablezdc::QYA,
sptablezdc::QYC,
sptablezdc::Iteration,
sptablezdc::Step);
} // namespace o2::aod
#endif // PWGCF_DATAMODEL_SPTABLEZDC_H_
5 changes: 5 additions & 0 deletions PWGCF/Flow/Tasks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,8 @@ o2physics_add_dpl_workflow(flow-gfw-omegaxi
SOURCES flowGFWOmegaXi.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::GFWCore
COMPONENT_NAME Analysis)

o2physics_add_dpl_workflow(flow-zdc-qvectors
SOURCES flowSPZDC.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::GFWCore
COMPONENT_NAME Analysis)
Loading
Loading