Skip to content

Commit

Permalink
ITS FHR fix DPLRawParser warning message (#689)
Browse files Browse the repository at this point in the history
* ITS FHR fix DPLRawParser warning message

* clang formate

Co-authored-by: JianLIUhep <[email protected]>
  • Loading branch information
zla2019 and JianLIUhep authored Apr 30, 2021
1 parent a4c6b9a commit c837c8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Modules/ITS/src/ITSFhrTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,8 @@ void ITSFhrTask::monitorData(o2::framework::ProcessingContext& ctx)
//set Decoder
mDecoder->startNewTF(ctx.inputs());
mDecoder->setDecodeNextAuto(true);
DPLRawParser parser(ctx.inputs()); //set input data
std::vector<InputSpec> rawDataFilter{ InputSpec{ "", ConcreteDataTypeMatcher{ "DS", "RAWDATA0" }, Lifetime::Timeframe } };
DPLRawParser parser(ctx.inputs(), rawDataFilter); //set input data

//get data information from RDH(like witch layer, stave, link, trigger type)
int lay = 0;
Expand Down

0 comments on commit c837c8b

Please sign in to comment.