Skip to content
Snippets Groups Projects
THcShowerPlane.cxx 37.7 KiB
Newer Older
  • Learn to ignore specific revisions
  •     for (Int_t i=0; i<fNelem; i++) {
    
          if (TMath::Abs(XTrk - static_cast<THcShower*>(fParent)->GetXPos(fLayerNum-1,i)) < fStatSlop) {
    
    	cout << "   Module " << i << ", X=" << static_cast<THcShower*>(fParent)->GetXPos(fLayerNum-1,i)
    
    	     << " matches track" << endl;
    
    	if (fGoodPosAdcPulseInt.at(i) > 0. || fGoodNegAdcPulseInt.at(i) > 0.)
    	  cout << "   PulseIntegrals = " << fGoodPosAdcPulseInt.at(i) << "  "
    	       << fGoodNegAdcPulseInt.at(i) << endl;
          }
        }
        cout << "---------------------------------------------------------------\n";
        //    getchar();
      }
      
      return 1;
    }