Fork me on GitHub

Changeset 341014c in git for modules/VertexFinder.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
  • modules/VertexFinder.h

    r45e58be r341014c  
    1010 */
    1111
    12 
    1312#include "classes/DelphesModule.h"
    1413
     14#include <map>
    1515#include <string>
    1616#include <vector>
    17 #include <map>
    1817
    1918class TObjArray;
     
    2322{
    2423public:
    25 
    2624  VertexFinder();
    2725  ~VertexFinder();
     
    3230
    3331private:
    34 
    35   void createSeeds ();
    36   void growCluster (const UInt_t);
    37   Double_t weight (const UInt_t);
    38   void addTrackToCluster (const UInt_t, const UInt_t);
    39   void removeTrackFromCluster (const UInt_t, const UInt_t);
     32  void createSeeds();
     33  void growCluster(const UInt_t);
     34  Double_t weight(const UInt_t);
     35  void addTrackToCluster(const UInt_t, const UInt_t);
     36  void removeTrackFromCluster(const UInt_t, const UInt_t);
    4037
    4138  Double_t fSigma;
     
    5249  TObjArray *fVertexOutputArray;
    5350
    54   std::map<UInt_t, std::map<std::string, Double_t> > trackIDToDouble;
    55   std::map<UInt_t, std::map<std::string, Int_t> > trackIDToInt;
    56   std::map<UInt_t, std::map<std::string, Bool_t> > trackIDToBool;
     51  std::map<UInt_t, std::map<std::string, Double_t>> trackIDToDouble;
     52  std::map<UInt_t, std::map<std::string, Int_t>> trackIDToInt;
     53  std::map<UInt_t, std::map<std::string, Bool_t>> trackIDToBool;
    5754
    58   std::map<UInt_t, std::map<std::string, Double_t> > clusterIDToDouble;
    59   std::map<UInt_t, std::map<std::string, Int_t> > clusterIDToInt;
    60   std::map<UInt_t, std::map<std::string, Bool_t> > clusterIDToBool;
    61   std::vector<std::pair<UInt_t, Double_t> > trackPT;
    62   std::vector<std::pair<UInt_t, Double_t> > clusterSumPT2;
     55  std::map<UInt_t, std::map<std::string, Double_t>> clusterIDToDouble;
     56  std::map<UInt_t, std::map<std::string, Int_t>> clusterIDToInt;
     57  std::map<UInt_t, std::map<std::string, Bool_t>> clusterIDToBool;
     58  std::vector<std::pair<UInt_t, Double_t>> trackPT;
     59  std::vector<std::pair<UInt_t, Double_t>> clusterSumPT2;
    6360
    6461  ClassDef(VertexFinder, 1)
Note: See TracChangeset for help on using the changeset viewer.