Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions DataFormats/Detectors/TRD/include/DataFormatsTRD/CalT0.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class CalT0
void setT0av(float t0) { mT0av = t0; }

float getT0(int iDet) const { return mT0[iDet]; }
//getT0av() returns the average T0 obtained by fitting the data from all chambers combined
// getT0av() returns the average T0 obtained by fitting the data from all chambers combined
float getT0av() const { return mT0av; }
//calcT0av() returns the average T0 from all individual chambers
// calcT0av() returns the average T0 from all individual chambers
float calcT0av() const
{
if (mT0.size() == 0) {
Expand Down
1 change: 0 additions & 1 deletion DataFormats/Detectors/TRD/src/T0FitHistos.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
using namespace o2::trd;
using namespace o2::trd::constants;


void T0FitHistos::reset()
{
mDet.resize(0);
Expand Down
1 change: 0 additions & 1 deletion Detectors/TRD/calibration/src/T0Fit.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ void T0Fit::initProcessing()
mInitDone = true;
}


void T0Fit::finalizeSlot(Slot& slot)
{
// do actual fits for the data provided in the given slot
Expand Down
1 change: 0 additions & 1 deletion Detectors/TRD/workflow/include/TRDWorkflow/T0FitSpec.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
#include "DetectorsBase/GRPGeomHelper.h"
#include <chrono>


using namespace o2::framework;

namespace o2
Expand Down