Fork me on GitHub

Changeset 341014c in git for examples


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

Location:
examples
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • examples/CaloGrid.cpp

    r45e58be r341014c  
    11//calorimeter grid
     2#include <algorithm>
     3#include <cassert>
     4#include <iostream>
     5#include <map>
    26#include <set>
    3 #include <map>
     7#include <sstream>
    48#include <utility>
    59#include <vector>
    6 #include <algorithm>
    7 #include <sstream>
    8 #include <iostream>
    9 #include <cassert>
    1010
     11#include "ExRootAnalysis/ExRootConfReader.h"
     12#include "classes/DelphesClasses.h"
    1113#include "display/Delphes3DGeometry.h"
    12 #include "classes/DelphesClasses.h"
    13 #include "ExRootAnalysis/ExRootConfReader.h"
    1414
    1515#include "TCanvas.h"
    16 #include "TStyle.h"
    17 #include "TString.h"
    18 #include "TText.h"
    1916#include "TH2F.h"
    2017#include "TLine.h"
     18#include "TString.h"
     19#include "TStyle.h"
     20#include "TText.h"
    2121
    2222using namespace std;
     
    2828{
    2929
    30  if(argc !=3)
    31  {
    32   cout << " Usage: ./CaloGrid [detector card] [calo name]"<<endl;
    33   cout<< "Example: ./CaloGrid cards/delphes_card_CMS.tcl ECal" <<endl;
    34   return 0;
    35  }
     30  if(argc != 3)
     31  {
     32    cout << " Usage: ./CaloGrid [detector card] [calo name]" << endl;
     33    cout << "Example: ./CaloGrid cards/delphes_card_CMS.tcl ECal" << endl;
     34    return 0;
     35  }
    3636
    3737  TString card(argv[1]);
     
    3939  ExRootConfReader *confReader = new ExRootConfReader;
    4040  confReader->ReadFile(card);
    41  
     41
    4242  std::vector<std::string> calorimeters_;
    43   std::map<std::string, std::set< std::pair<Double_t, Int_t> > > caloBinning_;
    44    
     43  std::map<std::string, std::set<std::pair<Double_t, Int_t>>> caloBinning_;
     44
    4545  std::string s(argv[2]);
    46   std::replace( s.begin(), s.end(), ',', ' ' );
    47   std::istringstream stream( s );
     46  std::replace(s.begin(), s.end(), ',', ' ');
     47  std::istringstream stream(s);
    4848  std::string word;
    49   while (stream >> word) calorimeters_.push_back(word);
     49  while(stream >> word) calorimeters_.push_back(word);
    5050
    51   caloBinning_.clear();                                                         // calo binning
     51  caloBinning_.clear(); // calo binning
    5252
    53   TCanvas c("","",1600,838);
    54    
    55   gPad->SetLeftMargin(0.16) ;
    56   gPad->SetTopMargin(0.16) ;
    57   gPad->SetBottomMargin(0.20) ;
     53  TCanvas c("", "", 1600, 838);
     54
     55  gPad->SetLeftMargin(0.16);
     56  gPad->SetTopMargin(0.16);
     57  gPad->SetBottomMargin(0.20);
    5858  gStyle->SetOptStat(0000000);
    59  
     59
    6060  gStyle->SetTextFont(132);
    61    
     61
    6262  TH2F h2("h2", "", 1, -6, 6, 1, 0, 6.28);
    6363
     
    7171  h2.GetYaxis()->SetLabelFont(132);
    7272
    73   h2.GetXaxis()->SetTitleOffset(1.4) ;
    74   h2.GetYaxis()->SetTitleOffset(1.1) ;
    75   h2.GetXaxis()->SetLabelOffset(0.02) ;
    76   h2.GetYaxis()->SetLabelOffset(0.02) ;
    77   h2.GetXaxis()->SetTitleSize(0.06) ;
    78   h2.GetYaxis()->SetTitleSize(0.06) ;
    79   h2.GetXaxis()->SetLabelSize(0.06) ;
    80   h2.GetYaxis()->SetLabelSize(0.06) ;
    81  
    82   h2.GetXaxis()->SetTickLength(0.0) ;
    83   h2.GetYaxis()->SetTickLength(0.0) ;
     73  h2.GetXaxis()->SetTitleOffset(1.4);
     74  h2.GetYaxis()->SetTitleOffset(1.1);
     75  h2.GetXaxis()->SetLabelOffset(0.02);
     76  h2.GetYaxis()->SetLabelOffset(0.02);
     77  h2.GetXaxis()->SetTitleSize(0.06);
     78  h2.GetYaxis()->SetTitleSize(0.06);
     79  h2.GetXaxis()->SetLabelSize(0.06);
     80  h2.GetYaxis()->SetLabelSize(0.06);
    8481
    85  
    86   h2.Draw(); 
    87  
    88    // fake loop just keeping it for convenience right now
    89   for(std::vector<std::string>::const_iterator calo=calorimeters_.begin();calo!=calorimeters_.end(); ++calo) {
    90  
     82  h2.GetXaxis()->SetTickLength(0.0);
     83  h2.GetYaxis()->SetTickLength(0.0);
     84
     85  h2.Draw();
     86
     87  // fake loop just keeping it for convenience right now
     88  for(std::vector<std::string>::const_iterator calo = calorimeters_.begin(); calo != calorimeters_.end(); ++calo)
     89  {
     90
    9191    //first entry is eta bin, second is number of phi bins
    92     set< pair<Double_t, Int_t> > caloBinning;
     92    set<pair<Double_t, Int_t>> caloBinning;
    9393    ExRootConfParam paramEtaBins, paramPhiBins;
    94     ExRootConfParam param = confReader->GetParam(Form("%s::EtaPhiBins",calo->c_str()));
     94    ExRootConfParam param = confReader->GetParam(Form("%s::EtaPhiBins", calo->c_str()));
    9595    Int_t size = param.GetSize();
    96    
    97     for(int i = 0; i < size/2; ++i) {
    98       paramEtaBins = param[i*2];
    99       paramPhiBins = param[i*2+1];
    100       assert(paramEtaBins.GetSize()==1);
    101      
    102       caloBinning.insert(std::make_pair(paramEtaBins[0].GetDouble(),paramPhiBins.GetSize()-1));
     96
     97    for(int i = 0; i < size / 2; ++i)
     98    {
     99      paramEtaBins = param[i * 2];
     100      paramPhiBins = param[i * 2 + 1];
     101      assert(paramEtaBins.GetSize() == 1);
     102
     103      caloBinning.insert(std::make_pair(paramEtaBins[0].GetDouble(), paramPhiBins.GetSize() - 1));
    103104    }
    104105    caloBinning_[*calo] = caloBinning;
    105  
    106   TLine *liney;
    107   TLine *linex;
    108  
    109   //loop over calo binning
    110   std::set<std::pair<Double_t, Int_t> >::iterator it;
    111  
    112   Int_t n = -1;
    113   for (it = caloBinning.begin(); it != caloBinning.end(); ++it)
    114   {
    115     n++;
    116    
    117     if(debug)cout<<"-----------------------"<<endl;
    118     if(debug)cout<<it->first<<","<<it->second<<endl;
    119     liney = new TLine(it->first,0,it->first,6.28);
    120     liney->SetLineColor(kRed+3);
    121     liney->Draw();
    122    
    123     set<std::pair<Double_t, Int_t> >::iterator it2 = it;
    124     it2--;
    125            
    126     for(int j = 0; j <= it->second; j++)
     106
     107    TLine *liney;
     108    TLine *linex;
     109
     110    //loop over calo binning
     111    std::set<std::pair<Double_t, Int_t>>::iterator it;
     112
     113    Int_t n = -1;
     114    for(it = caloBinning.begin(); it != caloBinning.end(); ++it)
    127115    {
    128      
    129       Double_t yval0 = 0 + 6.28 * j / it->second;
    130      
    131       if(debug) cout<<it2->first<<","<<yval0<<","<<it->first<<","<<yval0<<endl;
    132      
    133       linex = new TLine(it->first,yval0,it2->first,yval0);
    134       linex->SetLineColor(kRed+3);
    135       linex->Draw();
    136          
    137     }
    138    
    139  
    140   }
    141  
    142  
     116      n++;
     117
     118      if(debug) cout << "-----------------------" << endl;
     119      if(debug) cout << it->first << "," << it->second << endl;
     120      liney = new TLine(it->first, 0, it->first, 6.28);
     121      liney->SetLineColor(kRed + 3);
     122      liney->Draw();
     123
     124      set<std::pair<Double_t, Int_t>>::iterator it2 = it;
     125      it2--;
     126
     127      for(int j = 0; j <= it->second; j++)
     128      {
     129
     130        Double_t yval0 = 0 + 6.28 * j / it->second;
     131
     132        if(debug) cout << it2->first << "," << yval0 << "," << it->first << "," << yval0 << endl;
     133
     134        linex = new TLine(it->first, yval0, it2->first, yval0);
     135        linex->SetLineColor(kRed + 3);
     136        linex->Draw();
     137      }
     138    }
    143139  }
    144140
    145141  TString text = TString(s);
    146   TText *th1 = new TText(5.00,6.45,text);
    147   th1->SetTextAlign(31); 
    148   th1->SetTextFont(132); 
     142  TText *th1 = new TText(5.00, 6.45, text);
     143  th1->SetTextAlign(31);
     144  th1->SetTextFont(132);
    149145  th1->SetTextSize(0.075);
    150146  th1->Draw();
    151147
    152 
    153148  TString output = TString(s);
    154   c.Print(output+".png","png");
    155   c.Print(output+".pdf","pdf");
    156  
     149  c.Print(output + ".png", "png");
     150  c.Print(output + ".pdf", "pdf");
    157151}
  • examples/Example1.cpp

    r45e58be r341014c  
    1717 */
    1818
    19 
    2019#include <iostream>
    2120#include <utility>
    2221#include <vector>
    2322
     23#include "TApplication.h"
    2424#include "TROOT.h"
    2525#include "TSystem.h"
    26 #include "TApplication.h"
    2726
    2827#include "TString.h"
    2928
     29#include "TClonesArray.h"
    3030#include "TH2.h"
    3131#include "THStack.h"
    3232#include "TLegend.h"
     33#include "TLorentzVector.h"
    3334#include "TPaveText.h"
    34 #include "TClonesArray.h"
    35 #include "TLorentzVector.h"
    3635
    3736#include "classes/DelphesClasses.h"
    3837
     38#include "ExRootAnalysis/ExRootResult.h"
     39#include "ExRootAnalysis/ExRootTreeBranch.h"
    3940#include "ExRootAnalysis/ExRootTreeReader.h"
    4041#include "ExRootAnalysis/ExRootTreeWriter.h"
    41 #include "ExRootAnalysis/ExRootTreeBranch.h"
    42 #include "ExRootAnalysis/ExRootResult.h"
    4342#include "ExRootAnalysis/ExRootUtilities.h"
    4443
     
    7271  TString inputFile(argv[1]);
    7372
    74 //------------------------------------------------------------------------------
     73  //------------------------------------------------------------------------------
    7574
    76 // Here you call your macro's main function
     75  // Here you call your macro's main function
    7776
    7877  Example1(inputFile);
    7978
    80 //------------------------------------------------------------------------------
    81 
     79  //------------------------------------------------------------------------------
    8280}
    83 
    84 
Note: See TracChangeset for help on using the changeset viewer.