Fork me on GitHub

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
  • external/ExRootAnalysis/ExRootTreeReader.cc

    r45e58be r341014c  
    1010#include "ExRootAnalysis/ExRootTreeReader.h"
    1111
     12#include "TBranchElement.h"
     13#include "TCanvas.h"
     14#include "TClonesArray.h"
    1215#include "TH2.h"
    1316#include "TStyle.h"
    14 #include "TCanvas.h"
    15 #include "TClonesArray.h"
    16 #include "TBranchElement.h"
    1717
    1818#include <iostream>
     
    5151  if(fChain->IsA() == TChain::Class())
    5252  {
    53     TChain *chain = static_cast<TChain*>(fChain);
     53    TChain *chain = static_cast<TChain *>(fChain);
    5454    if(chain->GetTreeNumber() != fCurrentTree)
    5555    {
     
    9494      if(branch->IsA() == TBranchElement::Class())
    9595      {
    96         TBranchElement *element = static_cast<TBranchElement*>(branch);
     96        TBranchElement *element = static_cast<TBranchElement *>(branch);
    9797        const char *className = element->GetClonesName();
    9898        Int_t size = element->GetMaximum();
     
    145145
    146146//------------------------------------------------------------------------------
    147 
Note: See TracChangeset for help on using the changeset viewer.