Fork me on GitHub

Changeset 1354 in svn for trunk/classes


Ignore:
Timestamp:
Jan 20, 2014, 12:30:34 PM (11 years ago)
Author:
Pavel Demin
Message:

reorder variables in Candidate

Location:
trunk/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/DelphesClasses.cc

    r1348 r1354  
    111111  Position(0.0, 0.0, 0.0, 0.0),
    112112  Area(0.0, 0.0, 0.0, 0.0),
    113   fFactory(0),
    114   fArray(0),
    115113  NCharged(0),
    116114  NNeutrals(0),
     
    118116  BetaStar(0),
    119117  MeanSqDeltaR(0),
    120   PTD(0)
     118  PTD(0),
     119  fFactory(0),
     120  fArray(0)
    121121{
    122122  Edges[0] = 0.0;
  • trunk/classes/DelphesClasses.h

    r1348 r1354  
    211211
    212212  Float_t E; // photon energy
    213  
    214   Float_t T; //particle arrival time of flight 
    215  
     213
     214  Float_t T; //particle arrival time of flight
     215
    216216  Float_t EhadOverEem; // ratio of the hadronic versus electromagnetic energy deposited in the calorimeter
    217217
     
    235235  Float_t Eta; // electron pseudorapidity
    236236  Float_t Phi; // electron azimuthal angle
    237  
    238   Float_t T; //particle arrival time of flight 
    239  
     237
     238  Float_t T; //particle arrival time of flight
     239
    240240  Int_t Charge; // electron charge
    241241
     
    262262  Float_t Phi; // muon azimuthal angle
    263263
    264   Float_t T; //particle arrival time of flight 
    265    
     264  Float_t T; //particle arrival time of flight
     265
    266266  Int_t Charge; // muon charge
    267267
     
    286286  Float_t Phi; // jet azimuthal angle
    287287
    288   Float_t T; //particle arrival time of flight 
    289  
     288  Float_t T; //particle arrival time of flight
     289
    290290  Float_t Mass; // jet invariant mass
    291291
     
    371371  Float_t E; // calorimeter tower energy
    372372
    373   Float_t T; //particle arrival time of flight 
    374  
     373  Float_t T; //particle arrival time of flight
     374
    375375  Float_t Eem; // calorimeter tower electromagnetic energy
    376376  Float_t Ehad; // calorimeter tower hadronic energy
     
    421421  TLorentzVector Momentum, Position, Area;
    422422
    423   static CompBase *fgCompare; //!
    424   const CompBase *GetCompare() const { return fgCompare; }
    425 
    426   void AddCandidate(Candidate *object);
    427   TObjArray *GetCandidates();
    428 
    429   Bool_t Overlaps(const Candidate *object) const;
    430 
    431   virtual void Copy(TObject &object) const;
    432   virtual TObject *Clone(const char *newname = "") const;
    433   virtual void Clear(Option_t* option = "");
    434 
    435 // -- PileUpJetID variables ---
     423  // PileUpJetID variables
    436424
    437425  Int_t    NCharged;
     
    443431  Float_t  FracPt[5];
    444432
     433  static CompBase *fgCompare; //!
     434  const CompBase *GetCompare() const { return fgCompare; }
     435
     436  void AddCandidate(Candidate *object);
     437  TObjArray *GetCandidates();
     438
     439  Bool_t Overlaps(const Candidate *object) const;
     440
     441  virtual void Copy(TObject &object) const;
     442  virtual TObject *Clone(const char *newname = "") const;
     443  virtual void Clear(Option_t* option = "");
     444
    445445private:
    446446  DelphesFactory *fFactory; //!
Note: See TracChangeset for help on using the changeset viewer.