Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void Detector::configLayers(bool itof, bool otof, bool ftof, bool btof, std::str
{

const std::pair<float, float> dInnerTof = {21.f, 124.f}; // Radius and length
std::pair<float, float> dOuterTof = {95.f, 680.f}; // Radius and length
std::pair<float, float> dOuterTof = {95.f, 680.f}; // Radius and length
std::pair<float, float> radiusRangeDiskTof = {15.f, 100.f};
float zForwardTof = 370.f;
LOG(info) << "Configuring IOTOF layers with '" << pattern << "' pattern";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ using namespace o2::trk;
struct Cell2D {
Cell2D(int rowv, int colv, uint32_t digIdx = 0) : row(rowv), col(colv), digitIdx(digIdx) {}
int row, col;
uint32_t digitIdx; ///< Index of the original digit (for MC label retrieval)
uint32_t digitIdx; ///< Index of the original digit (for MC label retrieval)
Acts::Ccl::Label label{Acts::Ccl::NO_LABEL};
};

Expand Down