flavour
script.cpp File Reference
#include <iostream>
Include dependency graph for script.cpp:

Go to the source code of this file.

Typedefs

typedef unsigned int uint
 

Functions

int main ()
 

Typedef Documentation

typedef unsigned int uint

Definition at line 4 of file script.cpp.

Function Documentation

int main ( )

Definition at line 5 of file script.cpp.

5  {
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 }
unsigned int uint
Definition: script.cpp:4