Commit 141eab60 authored by Jihad Saidi's avatar Jihad Saidi
Browse files

Trying to fix syntax for pipeline passing #1

parent 269a2687
Loading
Loading
Loading
Loading
+3 −10
Original line number Diff line number Diff line
@@ -100,16 +100,9 @@ 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() {