Skip to content

Commit

Permalink
remove temporary code (AliceO2Group#8637)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrosseo authored and martenole committed Apr 26, 2022
1 parent 4c7760e commit 71caa0b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 17 deletions.
13 changes: 0 additions & 13 deletions Framework/Core/include/Framework/AnalysisDataModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -1003,19 +1003,6 @@ DECLARE_SOA_INDEX_TABLE(Run3MatchedToBCSparse, BCs, "MA_RN3_BC_SP", //!
DECLARE_SOA_INDEX_TABLE(Run2MatchedToBCSparse, BCs, "MA_RN2_BC_SP", //!
indices::BCId, indices::ZdcId, indices::FT0Id, indices::FV0AId, indices::FV0CId, indices::FDDId);

// temporary code during transition from FDD_000 to FDD_001
namespace indices_fdd_001
{
using FDD_001 = FDDs_001::iterator;
DECLARE_SOA_INDEX_COLUMN_FULL(FDD_001, fdd, int, FDDs_001, ""); //!
} // namespace indices_fdd_001
DECLARE_SOA_INDEX_TABLE(Run3MatchedToBCSparseFDD_001, BCs, "MA_RN3_BC_SP2", //!
indices::BCId, indices::ZdcId, indices::FT0Id, indices::FV0AId, indices_fdd_001::FDD_001Id);

DECLARE_SOA_INDEX_TABLE(Run2MatchedToBCSparseFDD_001, BCs, "MA_RN2_BC_SP2", //!
indices::BCId, indices::ZdcId, indices::FT0Id, indices::FV0AId, indices::FV0CId, indices_fdd_001::FDD_001Id);
// temporary code end

// Joins with collisions (only for sparse ones)
// NOTE: index table needs to be always last argument
} // namespace aod
Expand Down
4 changes: 0 additions & 4 deletions Framework/Core/src/AODReaderHelpers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,6 @@ AlgorithmSpec AODReaderHelpers::indexBuilderCallback(std::vector<InputSpec>& req
outputs.adopt(Output{origin, description}, maker(o2::aod::Run3MatchedToBCExclusiveMetadata{}));
} else if (description == header::DataDescription{"MA_RN2_BC_SP"}) {
outputs.adopt(Output{origin, description}, maker(o2::aod::Run2MatchedToBCSparseMetadata{}));
} else if (description == header::DataDescription{"MA_RN2_BC_SP2"}) {
outputs.adopt(Output{origin, description}, maker(o2::aod::Run2MatchedToBCSparseFDD_001Metadata{}));
} else if (description == header::DataDescription{"MA_RN3_BC_SP2"}) {
outputs.adopt(Output{origin, description}, maker(o2::aod::Run3MatchedToBCSparseFDD_001Metadata{}));
} else {
throw std::runtime_error("Not an index table");
}
Expand Down

0 comments on commit 71caa0b

Please sign in to comment.