@@ -28,7 +28,7 @@ using namespace GPUCA_NAMESPACE::gpu;
2828void GPUTPCTracker::DumpOutput (std::ostream& out)
2929{
3030 if (Param ().par .earlyTpcTransform ) {
31- out << " Slice " << mISlice << " \n " ;
31+ out << " \n Slice " << mISlice << " \n " ;
3232 const GPUTPCTrack* track = (Output ())->GetFirstTrack ();
3333 for (unsigned int j = 0 ; j < (Output ())->NTracks (); j++) {
3434 out << " Track " << j << " (" << track->NHits () << " ): " ;
@@ -44,7 +44,7 @@ void GPUTPCTracker::DumpOutput(std::ostream& out)
4444void GPUTPCTracker::DumpSliceData (std::ostream& out)
4545{
4646 // Dump Slice Input Data to File
47- out << " Slice Data (Slice" << mISlice << " ):" << std::endl;
47+ out << " \n Slice Data (Slice" << mISlice << " ):" << std::endl;
4848 for (int i = 0 ; i < GPUCA_ROW_COUNT ; i++) {
4949 if (Row (i).NHits () == 0 ) {
5050 continue ;
@@ -60,10 +60,10 @@ void GPUTPCTracker::DumpSliceData(std::ostream& out)
6060 }
6161}
6262
63- void GPUTPCTracker::DumpLinks (std::ostream& out)
63+ void GPUTPCTracker::DumpLinks (std::ostream& out, int phase )
6464{
6565 // Dump Links (after Neighbours Finder / Cleaner) to file
66- out << " Hit Links( Slice" << mISlice << " ):" << std::endl;
66+ out << " \n Hit Links (Phase " << phase << " , Slice" << mISlice << " ):" << std::endl;
6767 for (int i = 0 ; i < GPUCA_ROW_COUNT ; i++) {
6868 if (Row (i).NHits () == 0 ) {
6969 continue ;
@@ -82,7 +82,7 @@ void GPUTPCTracker::DumpLinks(std::ostream& out)
8282void GPUTPCTracker::DumpHitWeights (std::ostream& out)
8383{
8484 // dump hit weights to file
85- out << " Hit Weights(Slice" << mISlice << " ):" << std::endl;
85+ out << " \n Hit Weights(Slice" << mISlice << " ):" << std::endl;
8686 for (int i = 0 ; i < GPUCA_ROW_COUNT ; i++) {
8787 if (Row (i).NHits () == 0 ) {
8888 continue ;
@@ -113,7 +113,7 @@ int GPUTPCTracker::StarthitSortComparison(const void* a, const void* b)
113113void GPUTPCTracker::DumpStartHits (std::ostream& out)
114114{
115115 // sort start hits and dump to file
116- out << " Start Hits: (Slice" << mISlice << " ) (" << *NStartHits () << ")" << std::endl;
116+ out << " \n Start Hits: (Slice" << mISlice << " ) (" << *NStartHits () << ")" << std::endl;
117117 if (mRec ->GetProcessingSettings ().comparableDebutOutput ) {
118118 qsort (TrackletStartHits (), *NStartHits (), sizeof(GPUTPCHitId), StarthitSortComparison);
119119 }
@@ -126,7 +126,7 @@ void GPUTPCTracker::DumpStartHits(std::ostream& out)
126126void GPUTPCTracker::DumpTrackHits (std::ostream& out)
127127{
128128 // dump tracks to file
129- out << " Tracks : (Slice" << mISlice << " ) (" << *NTracks () << " )" << std::endl;
129+ out << " \n Tracks : (Slice" << mISlice << " ) (" << *NTracks () << " )" << std::endl;
130130 for (int k = 0 ; k < GPUCA_ROW_COUNT ; k++) {
131131 for (int l = 0 ; l < Row (k).NHits (); l++) {
132132 for (unsigned int j = 0 ; j < *NTracks (); j++) {
@@ -154,7 +154,7 @@ void GPUTPCTracker::DumpTrackletHits(std::ostream& out)
154154 if (nTracklets < 0 ) {
155155 nTracklets = 0 ;
156156 }
157- out << " Tracklets : (Slice" << mISlice << " ) (" << nTracklets << " )" << std::endl;
157+ out << " \n Tracklets : (Slice" << mISlice << " ) (" << nTracklets << " )" << std::endl;
158158 std::vector<int > Ids (nTracklets);
159159 std::iota (Ids.begin (), Ids.end (), 0 );
160160 if (mRec ->GetProcessingSettings ().comparableDebutOutput ) {
0 commit comments