ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/Particle.cc
Revision: 1.4
Committed: Mon Dec 1 17:30:01 2008 UTC (16 years, 5 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008pre2, Mit_008pre1, Mit_006b, Mit_006a
Changes since 1.3: +2 -2 lines
Log Message:
Cosmetics.

File Contents

# User Rev Content
1 loizides 1.4 // $Id: Particle.cc,v 1.3 2008/11/21 20:15:02 loizides Exp $
2 loizides 1.1
3     #include "MitAna/DataTree/interface/Particle.h"
4    
5     ClassImp(mithep::Particle)
6 loizides 1.2
7     using namespace mithep;
8    
9     //--------------------------------------------------------------------------------------------------
10 loizides 1.4 void Particle::Print(Option_t */*opt*/) const
11 loizides 1.2 {
12 loizides 1.3 // Print particle kinematics.
13    
14 loizides 1.2 printf("px=%.3f py=%.3f pz=%.3f e=%.3f\n", Px(), Py(), Pz(), E());
15     }