CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Functions
RawParticle.cc File Reference
#include "CommonTools/BaseParticlePropagator/interface/RawParticle.h"
#include <cmath>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &o, const RawParticle &p)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  o,
const RawParticle p 
)

Definition at line 71 of file RawParticle.cc.

References RawParticle::momentum(), class-composition::o, RawParticle::pid(), RawParticle::status(), and RawParticle::vertex().

71  {
72  o.setf(std::ios::fixed, std::ios::floatfield);
73  o.setf(std::ios::right, std::ios::adjustfield);
74 
75  o << std::setw(4) << std::setprecision(2) << p.pid() << " (";
76  o << std::setw(2) << std::setprecision(2) << p.status() << "): ";
77  o << std::setw(10) << std::setprecision(4) << p.momentum() << " ";
78  o << std::setw(10) << std::setprecision(4) << p.vertex();
79  return o;
80 }
int status() const
get the particle status
Definition: RawParticle.h:278
int pid() const
get the HEP particle ID number
Definition: RawParticle.h:277
const XYZTLorentzVector & momentum() const
the momentum fourvector
Definition: RawParticle.h:321
const XYZTLorentzVector & vertex() const
the vertex fourvector
Definition: RawParticle.h:320