@@ -56,13 +56,13 @@ const std::unordered_map<std::string, InputType> InputMap{
5656 { " digitizer" , InputType::Digitizer },
5757 { " digits" , InputType::Digits },
5858 { " raw" , InputType::Raw },
59- { " decoded- clusters" , InputType::DecodedClusters },
59+ { " clusters" , InputType::Clusters },
6060};
6161
6262const std::unordered_map<std::string, OutputType> OutputMap{
6363 { " digits" , OutputType::Digits },
6464 { " raw" , OutputType::Raw },
65- { " decoded- clusters" , OutputType::DecodedClusters },
65+ { " clusters" , OutputType::Clusters },
6666 { " tracks" , OutputType::Tracks },
6767};
6868
@@ -89,8 +89,8 @@ framework::WorkflowSpec getWorkflow(std::vector<int> const& tpcSectors, std::vec
8989 if (inputType == InputType::Raw && isEnabled (OutputType::Digits)) {
9090 throw std::invalid_argument (" input/output type mismatch, can not produce 'digits' from 'raw'" );
9191 }
92- if (inputType == InputType::DecodedClusters && (isEnabled (OutputType::Digits) || isEnabled (OutputType::Raw))) {
93- throw std::invalid_argument (" input/output type mismatch, can not produce 'digits', nor 'raw' from 'decoded- clusters" );
92+ if (inputType == InputType::Clusters && (isEnabled (OutputType::Digits) || isEnabled (OutputType::Raw))) {
93+ throw std::invalid_argument (" input/output type mismatch, can not produce 'digits', nor 'raw' from 'clusters' " );
9494 }
9595
9696 WorkflowSpec specs;
@@ -111,19 +111,19 @@ framework::WorkflowSpec getWorkflow(std::vector<int> const& tpcSectors, std::vec
111111 specs.emplace_back (o2::TPC::getPublisherSpec (PublisherConf{
112112 " tpc-raw-cluster-reader" ,
113113 " tpcraw" ,
114- { " databranch" , " TPCClusterHw" , " Branch with raw clusters" },
114+ { " databranch" , " TPCClusterHw" , " Branch with TPC raw clusters" },
115115 { " mcbranch" , " TPCClusterHwMCTruth" , " MC label branch" },
116116 OutputSpec{ " TPC" , " CLUSTERHW" },
117117 OutputSpec{ " TPC" , " CLUSTERHWMCLBL" },
118118 tpcSectors,
119119 laneConfiguration,
120120 },
121121 propagateMC));
122- } else if (inputType == InputType::DecodedClusters ) {
122+ } else if (inputType == InputType::Clusters ) {
123123 specs.emplace_back (o2::TPC::getPublisherSpec (PublisherConf{
124- " tpc-decoded -cluster-reader" ,
124+ " tpc-native -cluster-reader" ,
125125 " tpcrec" ,
126- { " clusterbranch" , " TPCClusterNative" , " Branch with decoded clusters" },
126+ { " clusterbranch" , " TPCClusterNative" , " Branch with TPC native clusters" },
127127 { " clustermcbranch" , " TPCClusterNativeMCTruth" , " MC label branch" },
128128 OutputSpec{ " TPC" , " CLUSTERNATIVE" },
129129 OutputSpec{ " TPC" , " CLNATIVEMCLBL" },
@@ -135,13 +135,13 @@ framework::WorkflowSpec getWorkflow(std::vector<int> const& tpcSectors, std::vec
135135
136136 // output matrix
137137 bool runTracker = isEnabled (OutputType::Tracks);
138- bool runDecoder = runTracker || isEnabled (OutputType::DecodedClusters );
138+ bool runDecoder = runTracker || isEnabled (OutputType::Clusters );
139139 bool runClusterer = runDecoder || isEnabled (OutputType::Raw);
140140
141141 // input matrix
142142 runClusterer &= inputType == InputType::Digitizer || inputType == InputType::Digits;
143143 runDecoder &= runClusterer || inputType == InputType::Raw;
144- runTracker &= runDecoder || inputType == InputType::DecodedClusters ;
144+ runTracker &= runDecoder || inputType == InputType::Clusters ;
145145
146146 WorkflowSpec parallelProcessors;
147147 // ////////////////////////////////////////////////////////////////////////////////////////////
@@ -302,13 +302,13 @@ framework::WorkflowSpec getWorkflow(std::vector<int> const& tpcSectors, std::vec
302302
303303 // ////////////////////////////////////////////////////////////////////////////////////////////
304304 //
305- // a writer process for decoded clusters
305+ // a writer process for TPC native clusters
306306 //
307- // selected by output type 'decoded- clusters'
308- if (isEnabled (OutputType::DecodedClusters )) {
307+ // selected by output type 'clusters'
308+ if (isEnabled (OutputType::Clusters )) {
309309 using MCLabelCollection = std::vector<o2::dataformats::MCTruthContainer<o2::MCCompLabel>>;
310- specs.push_back (makeWriterSpec (" tpc-decoded -cluster-writer" ,
311- inputType == InputType::DecodedClusters ? " tpc-filtered-decoded -clusters.root" : " tpc-decoded -clusters.root" ,
310+ specs.push_back (makeWriterSpec (" tpc-native -cluster-writer" ,
311+ inputType == InputType::Clusters ? " tpc-filtered-native -clusters.root" : " tpc-native -clusters.root" ,
312312 " tpcrec" ,
313313 BranchDefinition<const char *>{ InputSpec{ " data" , " TPC" , " CLUSTERNATIVE" , 0 },
314314 " TPCClusterNative" ,
0 commit comments