- Timestamp:
- Jun 10, 2015, 4:04:47 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 8707eeb
- Parents:
- 6ec8d18 (diff), 9c491e1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.cc
r6ec8d18 rdd514ae 45 45 //------------------------------------------------------------------------------ 46 46 47 TLorentzVector GenParticle::P4() 47 TLorentzVector GenParticle::P4() const 48 48 { 49 49 TLorentzVector vec; … … 54 54 //------------------------------------------------------------------------------ 55 55 56 TLorentzVector MissingET::P4() 56 TLorentzVector MissingET::P4() const 57 57 { 58 58 TLorentzVector vec; … … 63 63 //------------------------------------------------------------------------------ 64 64 65 TLorentzVector Photon::P4() 65 TLorentzVector Photon::P4() const 66 66 { 67 67 TLorentzVector vec; … … 72 72 //------------------------------------------------------------------------------ 73 73 74 TLorentzVector Electron::P4() 74 TLorentzVector Electron::P4() const 75 75 { 76 76 TLorentzVector vec; … … 81 81 //------------------------------------------------------------------------------ 82 82 83 TLorentzVector Muon::P4() 83 TLorentzVector Muon::P4() const 84 84 { 85 85 TLorentzVector vec; … … 90 90 //------------------------------------------------------------------------------ 91 91 92 TLorentzVector Jet::P4() 92 TLorentzVector Jet::P4() const 93 93 { 94 94 TLorentzVector vec; … … 99 99 //------------------------------------------------------------------------------ 100 100 101 TLorentzVector Track::P4() 101 TLorentzVector Track::P4() const 102 102 { 103 103 TLorentzVector vec; … … 108 108 //------------------------------------------------------------------------------ 109 109 110 TLorentzVector Tower::P4() 110 TLorentzVector Tower::P4() const 111 111 { 112 112 TLorentzVector vec; -
classes/DelphesClasses.h
r6ec8d18 rdd514ae 161 161 const CompBase *GetCompare() const { return fgCompare; } 162 162 163 TLorentzVector P4() ;163 TLorentzVector P4() const; 164 164 165 165 ClassDef(GenParticle, 1) … … 188 188 Float_t Phi; // mising energy azimuthal angle 189 189 190 TLorentzVector P4() ;190 TLorentzVector P4() const; 191 191 192 192 ClassDef(MissingET, 1) … … 254 254 const CompBase *GetCompare() const { return fgCompare; } 255 255 256 TLorentzVector P4() ;256 TLorentzVector P4() const; 257 257 258 258 ClassDef(Photon, 2) … … 289 289 const CompBase *GetCompare() const { return fgCompare; } 290 290 291 TLorentzVector P4() ;291 TLorentzVector P4() const; 292 292 293 293 ClassDef(Electron, 2) … … 322 322 const CompBase *GetCompare() const { return fgCompare; } 323 323 324 TLorentzVector P4() ;324 TLorentzVector P4() const; 325 325 326 326 ClassDef(Muon, 2) … … 419 419 const CompBase *GetCompare() const { return fgCompare; } 420 420 421 TLorentzVector P4() ;421 TLorentzVector P4() const; 422 422 423 423 ClassDef(Track, 2) … … 448 448 const CompBase *GetCompare() const { return fgCompare; } 449 449 450 TLorentzVector P4() ;450 TLorentzVector P4() const; 451 451 452 452 ClassDef(Tower, 1)
Note:
See TracChangeset
for help on using the changeset viewer.