Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Common/Tools/TrackPropagationModule.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

struct TrackPropagationConfigurables : o2::framework::ConfigurableGroup {
std::string prefix = "trackPropagation";
o2::framework::Configurable<float> minPropagationRadius{"minPropagationDistance", o2::constants::geom::XTPCInnerRef + 0.1, "Only tracks which are at a smaller radius will be propagated, defaults to TPC inner wall"};

Check failure on line 72 in Common/Tools/TrackPropagationModule.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/configurable]

Use lowerCamelCase for names of configurables and use the same name for the struct member as for the JSON string. (Declare the type and names on the same line.)
// for TrackTuner only (MC smearing)
o2::framework::Configurable<bool> useTrackTuner{"useTrackTuner", false, "Apply track tuner corrections to MC"};
o2::framework::Configurable<bool> useTrkPid{"useTrkPid", false, "use pid in tracking"};
Expand Down Expand Up @@ -113,25 +113,25 @@
fillTracksDCA = isTableRequiredInWorkflow(initContext, "TracksDCA");
fillTracksDCACov = isTableRequiredInWorkflow(initContext, "TracksDCACov");

// enable Tracks in case Tracks have been requested
// enable Tracks in case Tracks have been requested
if (fillTracksDCA) {
LOGF(info, "******************************************************************");
LOGF(info, " There is no task subscribed to Tracks, but I have detected a");
LOGF(info, " There is no task subscribed to Tracks, but I have detected a");
LOGF(info, " subscription to TracksDCA. Now enabling tracks as algorithmic");
LOGF(info, " dependency. Note: please be sure this is intentional! For");
LOGF(info, " dependency. Note: please be sure this is intentional! For");
LOGF(info, " secondary analyses, the proper DCA to test against is the DCA");
LOGF(info, " that the V0 or Cascade is assigned to and not necessarily the");
LOGF(info, " the one that the Track is assigned to (if any). ");
LOGF(info, "******************************************************************");
fillTracks = true;
fillTracks = true;
}

if (!fillTracks) {
LOGF(info, "Track propagation to PV not required. Suppressing all further processing and logs.");
}

LOGF(info, " Track propagation table detection results:");
if (fillTracks){
if (fillTracks) {
LOGF(info, " ---> Will generate Tracks table.");
}
if (fillTracksCov) {
Expand Down
Loading