Skip to content

Commit 00fe9a6

Browse files
committed
clang-format
1 parent ece90f4 commit 00fe9a6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Tutorials/src/filters.cxx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ struct Filters {
4343
// configurables can be used with ncfg(type, value, name)
4444
// where value is the default value
4545
// name is the full name in JSON, with prefix if there is any
46-
Configurable<std::string> extraFilter{"extraFilter","(o2::aod::track::phi < ncfg(float,2.0,phiUp)) && (o2::aod::track::phi > ncfg(float,1.0,phiLow))","extra filter string"};
46+
Configurable<std::string> extraFilter{"extraFilter", "(o2::aod::track::phi < ncfg(float,2.0,phiUp)) && (o2::aod::track::phi > ncfg(float,1.0,phiLow))", "extra filter string"};
4747
Filter extraF;
4848

4949
void init(InitContext&)
@@ -68,7 +68,5 @@ struct Filters {
6868

6969
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
7070
{
71-
return WorkflowSpec{
72-
adaptAnalysisTask<Filters>(cfgc)
73-
};
71+
return {adaptAnalysisTask<Filters>(cfgc)};
7472
}

0 commit comments

Comments
 (0)