ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/PollackPrograms/src/TCPhoton.cc
Revision: 1.2
Committed: Wed Feb 20 21:39:43 2013 UTC (12 years, 2 months ago) by bpollack
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +31 -65 lines
Log Message:
commiting moriond analysis package

File Contents

# User Rev Content
1 bpollack 1.1 #include "TCPhoton.h"
2     #include <iostream>
3    
4 bpollack 1.2 TCPhoton::TCPhoton() { }
5 bpollack 1.1
6 bpollack 1.2 TCPhoton::~TCPhoton() { }
7 bpollack 1.1
8     // "get" methods -------------------------------------
9    
10 bpollack 1.2 float TCPhoton::NormChi2() const { return _normChi2; }
11     float TCPhoton::HadOverEm() const { return _hadOverEm; }
12     float TCPhoton::SigmaIEtaIEta() const { return _sigmaIEtaIEta; }
13     float TCPhoton::R9() const { return _r9; }
14     float TCPhoton::SigmaIPhiIPhi() const { return _sigmaIPhiIPhi; }
15     float TCPhoton::E2OverE9() const { return _e2OverE9; }
16     bool TCPhoton::TrackVeto() const { return _trackVeto; }
17    
18     float TCPhoton::SCDPhi() const { return _SCdPhi; }
19     float TCPhoton::SCDEta() const { return _SCdEta; }
20     float TCPhoton::SCEnergy() const { return _SCenergy; }
21     float TCPhoton::SCEta() const { return _SCeta; }
22     float TCPhoton::SCPhi() const { return _SCphi; }
23 bpollack 1.1
24 bpollack 1.2 bool TCPhoton::ConversionVeto() const { return _convVeto; }
25 bpollack 1.1
26 bpollack 1.2 // "set" methods ---------------------------------------------
27 bpollack 1.1
28 bpollack 1.2 void TCPhoton::SetNormChi2(float c){ _normChi2 = c; }
29     void TCPhoton::SetHadOverEm(float h){ _hadOverEm = h; }
30     void TCPhoton::SetSigmaIEtaIEta(float s){ _sigmaIEtaIEta = s; }
31     void TCPhoton::SetSigmaIPhiIPhi(float s) { _sigmaIPhiIPhi = s; }
32     void TCPhoton::SetR9(float r){ _r9 = r; }
33     void TCPhoton::SetE2OverE9(float e) { _e2OverE9 = e; }
34     void TCPhoton::SetTrackVeto(bool t) { _trackVeto = t; }
35    
36     void TCPhoton::SetSCDPhi(float d){ _SCdPhi = d; }
37     void TCPhoton::SetSCDEta(float d){ _SCdEta = d; }
38     void TCPhoton::SetSCEta(float n) { _SCeta = n; }
39     void TCPhoton::SetSCPhi(float p) { _SCphi = p; }
40     void TCPhoton::SetSCEnergy(float e) { _SCenergy = e; }
41 bpollack 1.1
42 bpollack 1.2 void TCPhoton::SetConversionVeto(bool v) { _convVeto = v; }