Changeset 5d622b2 in git
- Timestamp:
- Mar 1, 2015, 10:02:13 PM (10 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 042c7b3, 4f34105
- Parents:
- 00f0ac8 (diff), 2b3ef28 (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
r00f0ac8 r5d622b2 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
r00f0ac8 r5d622b2 150 150 const CompBase *GetCompare() const { return fgCompare; } 151 151 152 TLorentzVector P4() ;152 TLorentzVector P4() const; 153 153 154 154 ClassDef(GenParticle, 1) … … 177 177 Float_t Phi; // mising energy azimuthal angle 178 178 179 TLorentzVector P4() ;179 TLorentzVector P4() const; 180 180 181 181 ClassDef(MissingET, 1) … … 234 234 const CompBase *GetCompare() const { return fgCompare; } 235 235 236 TLorentzVector P4() ;236 TLorentzVector P4() const; 237 237 238 238 ClassDef(Photon, 2) … … 260 260 const CompBase *GetCompare() const { return fgCompare; } 261 261 262 TLorentzVector P4() ;262 TLorentzVector P4() const; 263 263 264 264 ClassDef(Electron, 2) … … 284 284 const CompBase *GetCompare() const { return fgCompare; } 285 285 286 TLorentzVector P4() ;286 TLorentzVector P4() const; 287 287 288 288 ClassDef(Muon, 2) … … 333 333 const CompBase *GetCompare() const { return fgCompare; } 334 334 335 TLorentzVector P4() ;335 TLorentzVector P4() const; 336 336 337 337 ClassDef(Jet, 2) … … 376 376 const CompBase *GetCompare() const { return fgCompare; } 377 377 378 TLorentzVector P4() ;378 TLorentzVector P4() const; 379 379 380 380 ClassDef(Track, 2) … … 404 404 const CompBase *GetCompare() const { return fgCompare; } 405 405 406 TLorentzVector P4() ;406 TLorentzVector P4() const; 407 407 408 408 ClassDef(Tower, 1)
Note:
See TracChangeset
for help on using the changeset viewer.