CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
RawParticle.cc File Reference
#include "FastSimulation/Particle/interface/ParticleTable.h"
#include "FastSimulation/Particle/interface/RawParticle.h"
#include <iostream>
#include <iomanip>
#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 230 of file RawParticle.cc.

References RawParticle::momentum(), python.connectstrParser::o, RawParticle::pid(), RawParticle::status(), and RawParticle::vertex().

230  {
231 
232  o.setf(std::ios::fixed, std::ios::floatfield);
233  o.setf(std::ios::right, std::ios::adjustfield);
234 
235 
236  o << std::setw(4) << std::setprecision(2) << p.pid() << " (";
237  o << std::setw(2) << std::setprecision(2) << p.status() << "): ";
238  o << std::setw(10) << std::setprecision(4) << p.momentum() << " ";
239  o << std::setw(10) << std::setprecision(4) << p.vertex();
240  return o;
241 
242 }
int status() const
get the particle status
Definition: RawParticle.h:265
int pid() const
get the HEP particle ID number
Definition: RawParticle.h:264
const XYZTLorentzVector & momentum() const
the momentum fourvector
Definition: RawParticle.h:285
const XYZTLorentzVector & vertex() const
the vertex fourvector
Definition: RawParticle.h:284