forked from AliceO2Group/O2Physics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PWGJE] refactoring the derived data writer (AliceO2Group#9693)
- Loading branch information
Showing
15 changed files
with
759 additions
and
1,416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// 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. | ||
|
||
/// | ||
/// \brief Table definitions for selectors for writing out reduced data model for jets | ||
/// | ||
/// \author Nima Zardoshti <[email protected]> | ||
|
||
#ifndef PWGJE_DATAMODEL_JETREDUCEDDATASELECTOR_H_ | ||
#define PWGJE_DATAMODEL_JETREDUCEDDATASELECTOR_H_ | ||
|
||
#include <cmath> | ||
#include <vector> | ||
#include "Framework/AnalysisDataModel.h" | ||
|
||
namespace o2::aod | ||
{ | ||
namespace jetreduceddataselector | ||
{ | ||
DECLARE_SOA_COLUMN(IsCollisionSelected, isCollisionSelected, bool); | ||
DECLARE_SOA_COLUMN(IsMcCollisionSelected, isMcCollisionSelected, bool); | ||
|
||
} // namespace jetreduceddataselector | ||
DECLARE_SOA_TABLE(JCollisionSelections, "AOD", "JCOLLSELECTION", | ||
jetreduceddataselector::IsCollisionSelected); | ||
|
||
DECLARE_SOA_TABLE(JMcCollisionSelections, "AOD", "JMCCOLLSELECTION", | ||
jetreduceddataselector::IsMcCollisionSelected); | ||
} // namespace o2::aod | ||
|
||
#endif // PWGJE_DATAMODEL_JETREDUCEDDATASELECTOR_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.