- Timestamp:
- Nov 27, 2008, 7:26:42 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/ExRootAnalysis/interface/BlockClasses.h
r29 r56 13 13 * present in the data members of the Block TRoot class. 14 14 * 15 * $Date: 2008-11- 13 15:07:16$16 * $Revision: 1. 2$15 * $Date: 2008-11-27 18:26:42 $ 16 * $Revision: 1.3 $ 17 17 * 18 18 * … … 184 184 float Y; // particle vertex position (y component) [RawHepEventParticle::y()] 185 185 float Z; // particle vertex position (z component) [RawHepEventParticle::z()] 186 float M; 186 187 static TCompare *fgCompare; //! 187 188 -
trunk/src/HEPEVTConverter.cc
r18 r56 197 197 element->Py = event.Phep[address + 1]; 198 198 element->Pz = event.Phep[address + 2]; 199 element->M = event.Phep[address + 4]; 199 200 200 201 TLorentzVector vector(element->Px, element->Py, element->Pz, element->E); -
trunk/src/STDHEPConverter.cc
r18 r56 66 66 element->Py = myhepevt.phep[number][1]; 67 67 element->Pz = myhepevt.phep[number][2]; 68 element->M = myhepevt.phep[number][4]; 68 69 69 70 momentum.SetPxPyPzE(element->Px, element->Py, element->Pz, element->E);
Note:
See TracChangeset
for help on using the changeset viewer.