Fork me on GitHub

Changeset 341014c in git for classes/DelphesClasses.h


Ignore:
Timestamp:
Feb 12, 2019, 9:29:17 PM (6 years ago)
Author:
Pavel Demin <pavel-demin@…>
Branches:
ImprovedOutputFile, Timing, llp, master
Children:
6455202
Parents:
45e58be
Message:

apply .clang-format to all .h, .cc and .cpp files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.h

    r45e58be r341014c  
    3232// Dependencies (#includes)
    3333
     34#include "TLorentzVector.h"
     35#include "TObject.h"
    3436#include "TRef.h"
    35 #include "TObject.h"
    3637#include "TRefArray.h"
    37 #include "TLorentzVector.h"
    3838
    3939#include "classes/SortableObject.h"
     
    4646{
    4747public:
    48 
    4948  Long64_t Number; // event number
    5049
     
    6059{
    6160public:
    62 
    6361  Int_t Trigger; // trigger word
    6462
     
    7169{
    7270public:
    73 
    7471  Int_t ProcessID; // subprocess code for the event | hepup.IDPRUP
    7572
     
    9996{
    10097public:
    101 
    10298  Int_t ProcessID; // unique signal process id | signal_process_id()
    10399  Int_t MPI; // number of multi parton interactions | mpi ()
     
    121117  Float_t PDF1; // PDF (id1, x1, Q) | pdf_info()->pdf1()
    122118  Float_t PDF2; // PDF (id2, x2, Q) | pdf_info()->pdf2()
    123 
    124 
    125119
    126120  ClassDef(HepMCEvent, 3)
     
    181175{
    182176public:
    183 
    184177  Float_t T; // vertex position (t component)
    185178  Float_t X; // vertex position (x component)
     
    260253{
    261254public:
    262 
    263255  Float_t PT; // photon transverse momentum
    264256  Float_t Eta; // photon pseudorapidity
     
    295287{
    296288public:
    297 
    298289  Float_t PT; // electron transverse momentum
    299290  Float_t Eta; // electron pseudorapidity
     
    333324{
    334325public:
    335 
    336326  Float_t PT; // muon transverse momentum
    337327  Float_t Eta; // muon pseudorapidity
     
    369359{
    370360public:
    371 
    372361  Float_t PT; // jet transverse momentum
    373362  Float_t Eta; // jet pseudorapidity
     
    378367  Float_t Mass; // jet invariant mass
    379368
    380   Float_t DeltaEta;  // jet radius in pseudorapidity
    381   Float_t DeltaPhi;  // jet radius in azimuthal angle
     369  Float_t DeltaEta; // jet radius in pseudorapidity
     370  Float_t DeltaPhi; // jet radius in azimuthal angle
    382371
    383372  UInt_t Flavor; // jet flavor
     
    414403  TLorentzVector SoftDroppedP4[5]; // first entry (i = 0) is the total SoftDropped Jet 4-momenta and from i = 1 to 4 are the pruned subjets 4-momenta
    415404
    416 
    417405  Int_t NSubJetsTrimmed; // number of subjets trimmed
    418406  Int_t NSubJetsPruned; // number of subjets pruned
     
    423411  Double_t ExclYmerge45;
    424412  Double_t ExclYmerge56;
    425  
     413
    426414  TRefArray Constituents; // references to constituents
    427415  TRefArray Particles; // references to generated particles
     
    626614
    627615  Int_t NTimeHits;
    628   std::vector< std::pair< Float_t, Float_t > > ECalEnergyTimePairs;
     616  std::vector<std::pair<Float_t, Float_t>> ECalEnergyTimePairs;
    629617
    630618  // Isolation variables
     
    670658  Double_t ExclYmerge45;
    671659  Double_t ExclYmerge56;
    672      
     660
    673661  static CompBase *fgCompare; //!
    674662  const CompBase *GetCompare() const { return fgCompare; }
     
    681669  virtual void Copy(TObject &object) const;
    682670  virtual TObject *Clone(const char *newname = "") const;
    683   virtual void Clear(Option_t* option = "");
     671  virtual void Clear(Option_t *option = "");
    684672
    685673private:
     
    693681
    694682#endif // DelphesClasses_h
    695 
    696 
Note: See TracChangeset for help on using the changeset viewer.