Main Page | Namespace List | Class List | Directories | File List | Class Members | File Members

makeAllgammaMasses.C

Go to the documentation of this file.
00001 // The point of this program is to run the makePythiagamma.C program for different Higgs masses
00002 
00003 #include "makePythiagamma.C"
00004 
00005 
00006 void makeAllgammaMasses()
00007 {
00008   int Nevts = 10001;
00009   float higgs_massmax = 1001;
00010   float higgs_massmin = 850; 
00011   float Higgsmass = higgs_massmin;
00012   float interval = 50;
00013 
00014 
00015   while(Higgsmass < higgs_massmax)
00016     {
00017         if (Higgsmass<401)
00018     {interval = 10;
00019     }
00020   else
00021     {interval = 50;
00022     }
00023 
00024 
00025       makePyEvts(Nevts, Higgsmass);
00026       Higgsmass += interval;
00027     }
00028 }

Generated on Thu Jul 12 14:04:54 2007 for RebassooAnalysis by  doxygen 1.3.9.1