ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/interface/Vertex.hh
(Generate patch)

Comparing UserCode/HbbAnalysis/interface/Vertex.hh (file contents):
Revision 1.1 by amagnan, Wed Feb 10 13:50:17 2010 UTC vs.
Revision 1.2 by amagnan, Thu Feb 18 17:27:34 2010 UTC

# Line 49 | Line 49 | namespace HbbAnalysis {
49        vtx_.cov12 = 0;
50      };
51  
52 +    inline void print(std::ostream & aOs){
53 +      
54 +      aOs << "=======================================================" << std::endl
55 +          << "================== Print Vertex ==================" << std::endl
56 +          << "=======================================================" << std::endl
57 +          << "====== size of trackWeights = " <<  vtx_.trackWeights.size() << std::endl
58 +          << "====== chi2 = " <<  vtx_.chi2 << std::endl
59 +          << "====== ndof = " <<  vtx_.ndof << std::endl
60 +          << "====== x = " <<  vtx_.x << std::endl
61 +          << "====== y = " <<  vtx_.y << std::endl
62 +          << "====== z = " <<  vtx_.z << std::endl
63 +          << "====== xError = " <<  vtx_.xError << std::endl
64 +          << "====== yError = " <<  vtx_.yError << std::endl
65 +          << "====== zError = " <<  vtx_.zError << std::endl
66 +          << "====== cov01 = " <<  vtx_.cov01 << std::endl
67 +          << "====== cov02 = " <<  vtx_.cov02 << std::endl
68 +          << "====== cov12 = " <<  vtx_.cov12 << std::endl
69 +          << "=======================================================" << std::endl;
70 +
71 +
72 +    };
73 +
74    private:
75  
76      HbbAnalysis::VertexVars vtx_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines