Fork me on GitHub

Changeset 375 in svn


Ignore:
Timestamp:
May 10, 2009, 10:12:51 PM (15 years ago)
Author:
Xavier Rouby
Message:

void TRootGenParticle::print

Location:
trunk/Utilities/ExRootAnalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Utilities/ExRootAnalysis/interface/BlockClasses.h

    r370 r375  
    234234  float PhiCalo; // particle azimuthal angle in rad when entering the calo
    235235  void SetEtaPhiCalo(const float eta, const float phi) {EtaCalo=eta; PhiCalo=phi;};
     236
     237  void print();//
    236238
    237239  static TCompare *fgCompare; //!
  • trunk/Utilities/ExRootAnalysis/src/BlockClasses.cc

    r370 r375  
    206206}
    207207
     208void TRootGenParticle:: print(){
     209  cout << "pid = " << PID << "\tM=" << M << "\tQ= " << Charge << "\tStatus = " << Status << "\t E= " << E << endl;
     210//  cout << "T   = " << T << "\t X = " << X << "\t Y = " << Y << "\t Z = " << Z << endl;
     211}
     212
Note: See TracChangeset for help on using the changeset viewer.