File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2380,10 +2380,10 @@ O2HASH("TEST/0");
23802380// / A configurable 'expression' column. i.e. a column that can be calculated from other
23812381// / columns with gandiva based on dynamically supplied C++ expression or a string definition.
23822382#define DECLARE_SOA_CONFIGURABLE_EXPRESSION_COLUMN (_Name_, _Getter_, _Type_, _Label_ ) \
2383- struct _Name_ : o2::soa::Column <_Type_, _Name_> { \
2383+ struct _Name_ : o2::soa::PersistentColumn <_Type_, _Name_> { \
23842384 static constexpr const char * mLabel = _Label_; \
23852385 static constexpr const int32_t mHash = _Label_ " " _h; \
2386- using base = o2::soa::Column <_Type_, _Name_>; \
2386+ using base = o2::soa::PersistentColumn <_Type_, _Name_>; \
23872387 using type = _Type_; \
23882388 using column_t = _Name_; \
23892389 using spawnable_t = std::true_type; \
You can’t perform that action at this time.
0 commit comments