[go: nahoru, domu]

Skip to content

Commit

Permalink
remove unnecessary mentions of people
Browse files Browse the repository at this point in the history
  • Loading branch information
Frankenfrog committed Jul 7, 2021
1 parent c908b03 commit a954cad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framework/tests/formula_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ namespace {
EXPECT_FORMULA_OK("a+b*c", "('a'+('b'*'c'))");
EXPECT_FORMULA_OK("a^b*c", "(('a'^'b')*'c')");

EXPECT_FORMULA_OK("10.58-2+4", "12.580000"); // c/o. Racha
EXPECT_FORMULA_OK("10.58-2+4", "12.580000");
EXPECT_FORMULA_OK("10.58-(2+4)", "4.580000");
EXPECT_FORMULA_OK("10.58-[2+4]", "4.580000");
}
Expand Down
2 changes: 1 addition & 1 deletion pxd/modules/pxdReconstruction/src/PXDClusterizerModule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ void PXDClusterizerModule::writeClusters(VxdID sensorID)
int clusterkind = PXDClusterPositionEstimator::getInstance().getClusterkind(cls.pixels(), sensorID);

// Compute sorted set of pixel
// FIXME: I am not 100% sure if cls.pixels() are sorted => ask PeterQ or Martin Ritter
// FIXME: I am not 100% sure if cls.pixels() are sorted
set<Pixel> pixelSet(cls.pixels().begin(), cls.pixels().end());

// Compute classifier variables needed for later retrival of position correction in PXD CKF
Expand Down

0 comments on commit a954cad

Please sign in to comment.