ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/Particle.cc
Revision: 1.2
Committed: Tue Jul 15 11:31:08 2008 UTC (16 years, 9 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_006, Mit_005, Mit_004, MITHEP_2_0_x
Changes since 1.1: +9 -1 lines
Log Message:
Have print out

File Contents

# User Rev Content
1 loizides 1.2 // $Id: Particle.cc,v 1.1 2008/05/27 19:24:49 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     void Particle::Print(Option_t *opt) const
11     {
12     printf("px=%.3f py=%.3f pz=%.3f e=%.3f\n", Px(), Py(), Pz(), E());
13     }