Fork me on GitHub

Changeset 56 in svn


Ignore:
Timestamp:
Nov 27, 2008, 7:26:42 PM (16 years ago)
Author:
severine ovyn
Message:

add M

Location:
trunk
Files:
3 edited

Legend:

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

    r29 r56  
    1313 *  present in the data members of the Block TRoot class.
    1414 *
    15  *  $Date: 2008-11-13 15:07:16 $
    16  *  $Revision: 1.2 $
     15 *  $Date: 2008-11-27 18:26:42 $
     16 *  $Revision: 1.3 $
    1717 *
    1818 * 
     
    184184  float Y; // particle vertex position (y component) [RawHepEventParticle::y()]
    185185  float Z; // particle vertex position (z component) [RawHepEventParticle::z()]
     186  float M;
    186187  static TCompare *fgCompare; //!
    187188
  • trunk/src/HEPEVTConverter.cc

    r18 r56  
    197197              element->Py = event.Phep[address + 1];
    198198              element->Pz = event.Phep[address + 2];
     199              element->M = event.Phep[address + 4];
    199200             
    200201              TLorentzVector vector(element->Px, element->Py, element->Pz, element->E);
  • trunk/src/STDHEPConverter.cc

    r18 r56  
    6666    element->Py = myhepevt.phep[number][1];
    6767    element->Pz = myhepevt.phep[number][2];
     68    element->M = myhepevt.phep[number][4];
    6869
    6970    momentum.SetPxPyPzE(element->Px, element->Py, element->Pz, element->E);
Note: See TracChangeset for help on using the changeset viewer.