Skip to content
Snippets Groups Projects

Changed the title of the tuples to fix issue

Merged Louis Henry requested to merge lohenry_fixPrClustersResidual into master
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -251,7 +251,7 @@ void PrClustersResidual::Occupancy( const PrFTHitHandler<PrHit>& FTHitHandler )
void PrClustersResidual::DumpAllHits( const PrFTHitHandler<PrHit>& FTHitHandler ) {
// ODIN for event
LHCb::ODIN* odin = getIfExists<LHCb::ODIN>( LHCb::ODINLocation::Default );
Tuples::Tuple tuple = GaudiTupleAlg::nTuple( "AllHits", "Events" );
Tuples::Tuple tuple = GaudiTupleAlg::nTuple( "AllHits", "AllHits" );
std::vector<int> LHCbIDs;
std::vector<double> Hit_Xat0;
std::vector<double> Hit_Zat0;
@@ -337,7 +337,7 @@ void PrClustersResidual::TrackStudy( const PrFTHitHandler<PrHit>& FTHitHandler )
// Loop on MCParticle -> 1 entry per MCParticle . ODIN Event number?
debug() << "Will loop on all the MCParticle" << endmsg;
for ( LHCb::MCParticles::const_iterator iPart = mcParts->begin(); iPart != mcParts->end(); ++iPart ) {
Tuples::Tuple tuple = GaudiTupleAlg::nTuple( "TrackStudy", "Events" );
Tuples::Tuple tuple = GaudiTupleAlg::nTuple( "TrackStudy", "TrackStudy" );
// Running the cheated seeding here
const LHCb::MCParticle* mcPart = *iPart;
if ( m_onlyHasT && !trackInfo.hasT( mcPart ) ) continue; // Keep Only tracks for which hasT is true! (IMPORTANT)
@@ -967,7 +967,7 @@ void PrClustersResidual::ClusterResidual( const PrFTHitHandler<PrHit>& FTHitHand
LinkedTo<LHCb::MCHit> myFTCluster2MCHitLink( evtSvc(), msgSvc(), LHCb::FTLiteClusterLocation::Default + "2MCHits" );
MCTrackInfo trackInfo = make_MCTrackInfo( evtSvc(), msgSvc() );
if ( msgLevel( MSG::DEBUG ) ) debug() << " Add MCHitAndTrackStudy " << endmsg;
Tuples::Tuple tuple = GaudiTupleAlg::nTuple( "ClusterMCHitAndTrackStudy", "Events" );
Tuples::Tuple tuple = GaudiTupleAlg::nTuple( "ClusterMCHitAndTrackStudy", "ClusterMCHitAndTrackStudy" );
for ( unsigned int zone = 0; zone < PrFTInfo::nbZones(); ++zone ) {
bool isX = false;
bool isU = false;
Loading