flavour
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
script.cpp
Go to the documentation of this file.
1 #include <iostream>
2 
3 using namespace std;
4 typedef unsigned int uint;
5 int main(){
6 
7 string g[3]={"0","1","2"};
8 string u[3]={"0","1"};
9 
10 string sg[3]={"1st","2nd","3rd"};
11 string su[3]={"Down","Up"};
12 
13 for(uint qup=0;qup<2;qup++)
14 for(uint gQ=0;gQ<3;gQ++)
15 {
16 cout<<"\\pagebreak\n";
17 for(uint gL=0;gL<3;gL++){
18 cout<<"\\begin{figure}[!htb]\n\\centering"<<endl;
19 for(uint lup=0;lup<2;lup++){
20 cout<<"\\includegraphics[width=0.49\\textwidth]{../pdfs/T_BD/pdf_";
21  cout<<g[gL]<<g[gQ]<<u[lup]<<u[qup];
22  cout<<".png}"<<endl;
23 }
24 cout<<"\\caption{BGL Quarks: gen "<<sg[gQ]<<" FCNC "<<su[qup];
25 cout<<"; Leptons: gen "<<sg[gL]<<" FCNC chargedlepton/neutrino on the left/right.}"<<endl;
26 cout<<"\\end{figure}"<<endl<<endl;
27 }
28 }
29 return 0;
30 }
Definition: multivector.h:4
unsigned int uint
Definition: script.cpp:4
int main()
Definition: script.cpp:5