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.3 by amagnan, Mon Oct 25 11:03:44 2010 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines