Commit e5a7765a authored by Jihad Saidi's avatar Jihad Saidi
Browse files

Trying to fix syntax for pipeline passing #2

parent 141eab60
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -100,9 +100,11 @@ std::vector<const MCParticle*> PixelHit::getPrimaryMCParticles() const {
    return primary_particles;
}

void PixelHit::print(std::ostream &out) const
{
    out << "PixelHit " << this->getIndex().X() << ", " << this->getIndex().Y() << ", " << this->getLocalTime() << ", " << this->getGlobalTime() << ", " << this->getPixel().getGlobalCenter().X() << ", " << this->getPixel().getGlobalCenter().Y() << ", " << this->getPixel().getGlobalCenter().Z() << ", " << this->getSignal();
void PixelHit::print(std::ostream& out) const {
    out << "PixelHit " << this->getIndex().X() << ", " << this->getIndex().Y() << ", " << this->getLocalTime() << ", "
        << this->getGlobalTime() << ", " << this->getPixel().getGlobalCenter().X() << ", "
        << this->getPixel().getGlobalCenter().Y() << ", " << this->getPixel().getGlobalCenter().Z() << ", "
        << this->getSignal();
}

void PixelHit::loadHistory() {