Changeset 172 in JEM-EUSO


Ignore:
Timestamp:
Jun 13, 2013, 3:11:41 PM (11 years ago)
Author:
moretto
Message:

tentative de debugage de Analysis.C mais sans résultat

Location:
esaf_lal/branches/camille
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • esaf_lal/branches/camille/camille_work/KIT_phase1_study/macros/Analysis.C

    r169 r172  
    1212const char* inputfile2="/Users/moretto/Documents/thesis/ESAF/Code/esaf_lal/esaf/camille_work/KIT_phase1_study/10_ns_TimeResolution__100_event/simu.root";
    1313const char* inputfile3="/Users/moretto/Documents/thesis/ESAF/Code/esaf_lal/esaf/camille_work/KIT_phase1_study/5_ns_TimeResolution__100_event/simu.root";
     14const char* inputfile4="/Users/moretto/Documents/thesis/ESAF/Code/esaf_lal/esaf/camille_work/KIT_phase1_study/0_ns_TimeResolution__100_event/simu.root";
     15
    1416
    1517EEvent*          ev = 0;
     
    1820EBunchPhotons*   gBunchPhotons = NULL;
    1921
     22TProfile *hprof_multi[20];
     23//TProfile *hprof;
     24TH1F *histo_multi[100];
     25TCanvas *c3, *c4;
     26TH1F *histo_total;
     27TFile *f[20];
     28TTree *etree[20];
     29
    2030void gettree();
    2131void init();
     
    2737{
    2838    //Déclaration d'un tableau de TProfile permettant de stocker les TProfiles créé par l'analyse des fichiers
    29     TProfile *hprof_multi[2];
     39   
     40    Float_t x[200], y[200];
     41    Float_t bin1, bin2;
     42    const char hprof_name[50];
    3043   
    3144    //Initialisation & process du premier fichier
    32     init(inputfile);
    33     process_profile();
    34     TCanvas *c3 = new TCanvas("c3", "TProfile of the GTU distribution for 100 events for 30 ns dead time");
    35     hprof_multi[1] = hprof;
    36     hprof_multi[1]->Draw();
    37    
     45    init(inputfile, 0);
     46//    process_profile(0);
     47   
     48    sprintf(hprof_name, "hprof_multi%d", 0);
     49    hprof_multi[0] = new TProfile(hprof_name, "Average number of photons per GTU", 128, 0, 128);
     50   
     51    //f[0]->Close();
     52    //etree[0]->Delete();
     53
     54    gDirectory->ls();
     55   
     56    c3 = new TCanvas("c3", "c3 - TProfile of the GTU distribution for 100 events for 30 ns dead time");
     57    //hprof_multi[0] = hprof;
     58    hprof_multi[0]->Print();
     59//    c3->cd();
     60//    hprof_multi[0]->Draw();
     61 
    3862    //Initialisation & process du second fichier
    39     init(inputfile3);
    40     process_profile();
    41     TCanvas *c4 = new TCanvas("c4", "TProfile of the GTU distribution for 100 events for 5 ns dead time");
    42     hprof_multi[2] = hprof;
    43     hprof_multi[2]->Draw();
    44    
    45    
    46     TCanvas *c4 = new TCanvas("c5", "Efficiency vs GTU");
    47     TProfile *hprof_efficiency = new TProfile("hprof_efficiency", "Efficiency vs GTU", 128, 0, 128);
     63    init(inputfile4, 1);
     64    //process_profile(1);
     65   
     66    sprintf(hprof_name, "hprof_multi%d", 1);
     67    hprof_multi[1] = new TProfile(hprof_name, "Average number of photons per GTU", 128, 0, 128);
     68
     69    //f[1]->Close();
     70    //etree[1]->Delete();
     71
     72   
     73    c4 = new TCanvas("c4", "c4 - TProfile of the GTU distribution for 100 events for 0 ns dead time");
     74    //hprof_multi[1] = hprof;
     75    hprof_multi[1]->Print();
     76   
     77   
     78   
     79    gDirectory->ls();
     80   
     81//    c4->cd();
     82//    hprof_multi[1]->Draw();
     83   
     84   
     85/*
     86    TCanvas *c5 = new TCanvas("c5", "Efficiency vs GTU");
    4887 
    4988    for (Int_t i=0; i<128; i++)
    5089    {
    51         Float_t bin1 = hprof_multi[1]->GetBinContent(i);
    52         Float_t bin2 = hprof_multi[2]->GetBinContent(i);
     90        bin1 = hprof_multi[0]->GetBinContent(i);
     91        bin2 = hprof_multi[1]->GetBinContent(i);
     92       
     93        x[i] = i;
    5394       
    5495        if (bin2 == 0)
    5596        {
    56             hprof_efficiency->Fill(i, 0); //Il faut entrer des entiers dedans sinon ça ne marchera pas!!!!
     97            y[i] = 0;
    5798        }
    5899       
    59100        else
    60101        {
    61             hprof_efficiency->Fill(i, bin1/bin2); //Il faut entrer des entiers dedans sinon ça ne marchera pas!!!!
    62         }
    63     }
    64    
    65     hprof_efficiency->Draw();
    66 }
    67 
    68 //______________________________________________________________________________
    69 void process_profile()
     102            y[i] = bin1/bin2;
     103        }
     104    }
     105    TGraph *g_efficiency = new TGraph(128, x, y);
     106    g_efficiency->SetLineColor(2);
     107    g_efficiency->SetLineWidth(2));
     108    g_efficiency->SetMarkerColor(4);
     109    g_efficiency->SetMarkerStyle(21);
     110    g_efficiency->Draw("ACP");*/
     111}
     112
     113//______________________________________________________________________________
     114void process_profile(int n)
    70115//ici on récupÚre les données de temps pour les 100 événements afin de réaliser un TProfile
    71116{
    72117    //Déclaration des histogrammes et autres
    73     TH1F *histo_total = new TH1F("histo_total", "Histogram of photons read by the electronics for 100 showers", 128, 0, 128);
    74     TH1F *histo_multi[100];
    75     hprof = new TProfile("hprof", "Average number of photons per GTU", 128, 0, 128);
    76    
    77     histo_total->Reset();
    78     hprof->Reset();
    79    
    80     //Boucle sur l'ensemble des événements pour créer une distribution totale
     118   // histo_total = new TH1F("histo_total", "Histogram of photons read by the electronics for 100 showers", 128, 0, 128);
     119   
     120    const char hprof_name[50];
     121    sprintf(hprof_name, "hprof_multi%d", n);
     122    hprof_multi[n] = new TProfile(hprof_name, "Average number of photons per GTU", 128, 0, 128);
     123   
     124    //histo_total->Reset();
     125    //hprof->Reset();
     126   
     127/*    //Boucle sur l'ensemble des événements pour créer une distribution totale
    81128    for (Int_t  i=0; i<nb_entries ; i++)
    82129    {
     
    100147    }
    101148   
    102     /* TCanvas *c1 = new TCanvas("c1", "Distribution totale");
     149    TCanvas *c1 = new TCanvas("c1", "Distribution totale");
    103150     histo_total->GetXaxis()->SetTitle("GTU");
    104151     histo_total->Draw(); */
     
    108155    //c2->Divide(10,10);
    109156   
    110     for (Int_t i=0; i<nb_entries; i++)
    111     {
    112         histo_multi[i] = new TH1F("histo_multi", "Single shower histograms", 128, 0, 128);
    113         histo_multi[i]->Reset();
     157    //TEST*******
     158   
     159 /*   for (Int_t i=0; i<nb_entries; i++)
     160    {
     161       
     162        const char histoname[50];
     163        sprintf(histoname,"histomulti%d",i);
     164        histo_multi[i] = new TH1F(histoname, "Single shower histograms", 128, 0, 128);
    114165    }
    115166   
     
    118169        loadevent(i);
    119170       
    120         nb_photon = gDetector->GetNumPhotons();
     171        Int_t nb_photon = gDetector->GetNumPhotons();
    121172       
    122173        for (Int_t j=0; j<nb_photon; j++)
    123174        {
    124             macrocell_status = gDetector->GetPhoton(j)->GetMacroCell();
    125             photon_type = gDetector->GetPhoton(j)->GetType();
     175            Int_t macrocell_status = gDetector->GetPhoton(j)->GetMacroCell();
     176            Int_t photon_type = gDetector->GetPhoton(j)->GetType();
    126177           
    127178            if (macrocell_status == 1 & photon_type != 2) //on ne sélectionne que les photons étant détectés par l'électronique & autre que les Cerenkov
    128179            {
    129                 gtu = gDetector->GetPhoton(j)->GetGtu();
     180                Float_t gtu = gDetector->GetPhoton(j)->GetGtu();
    130181                histo_multi[i]->Fill(gtu);
    131182            }
     
    142193        for (Int_t i=0; i<128; i++)
    143194        {
    144             hprof->Fill(i, histo_multi[j]->GetBinContent(i));
    145         }
    146        
    147     }
    148    
    149 }
    150 
    151 //______________________________________________________________________________
    152 void init( const char* fname)
    153 {
    154     TFile *f = new TFile(fname);
    155     gettree();
    156 }
    157 
    158 //______________________________________________________________________________
    159 void gettree()
    160 {
    161     TTree *etree = (TTree*)gDirectory->Get("etree");
    162     if ( etree )
    163     {
    164         nb_entries = etree->GetEntries();
     195            hprof_multi[n]->Fill(i, histo_multi[j]->GetBinContent(i));
     196        }
     197       
     198    }
     199   
     200    for (Int_t k=0; k<nb_entries; k++)
     201    {
     202        histo_multi[k]->Reset();
     203    }
     204    */
     205}
     206
     207//______________________________________________________________________________
     208void init( const char* fname, int n_file)
     209{
     210    std::cout << "enter init #"<< n_file << std::endl;
     211   
     212    f[n_file] = new TFile(fname);
     213    gettree(n_file);
     214    std::cout << "exit init" << std::endl;
     215}
     216
     217//______________________________________________________________________________
     218void gettree(int n_tree)
     219{
     220    std::cout << "enter gettree #" << n_tree << std::endl;
     221   
     222    etree[n_tree] = (TTree*)gDirectory->Get("etree");
     223    if ( etree[n_tree] )
     224    {
     225        nb_entries = etree[n_tree]->GetEntries();
    165226        Printf("etree found with %d events stored.", nb_entries);
    166227    }
     228   
     229    std::cout << "exit gettree" << std::endl;
     230
    167231}
    168232
  • esaf_lal/branches/camille/fort.18

    r161 r172  
    44   -99.000   -99.000   -99.000
    55   34    user mode l     
    6      0.000    13.866    45.065    19.614     0.125     0.000    0
     6     0.000    14.027    45.516    19.998     0.128     0.000    0
    77  -99  -99  -99  -99
    88   -99.000   -99.000   -99.000   -99.000   -99.000   -99.000   -99.000   -99.000
     
    5656 29000.  1.0000  0.9990  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    5757 29195.  1.0000  0.9994  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    58  29390.  1.0000  0.9968  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    59  29585.  1.0000  0.9971  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    60  29780.  1.0000  0.9982  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    61  29975.  1.0000  0.9919  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    62  30170.  1.0000  0.9895  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    63  30365.  1.0000  0.9935  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    64  30560.  1.0000  0.9851  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    65  30755.  1.0000  0.9740  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    66  30950.  1.0000  0.9722  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    67  31145.  1.0000  0.9721  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    68  31340.  1.0000  0.9610  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    69  31535.  1.0000  0.9327  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    70  31730.  1.0000  0.9213  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    71  31925.  1.0000  0.8928  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    72  32120.  1.0000  0.8532  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    73  32315.  1.0000  0.8258  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    74  32510.  1.0000  0.7861  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    75  32705.  1.0000  0.7245  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    76  32900.  1.0000  0.6546  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    77  33095.  1.0000  0.5828  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    78  33290.  1.0000  0.5045  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    79  33485.  1.0000  0.4213  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    80  33680.  1.0000  0.3272  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    81  33875.  1.0000  0.2491  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    82  34070.  1.0000  0.1817  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    83  34265.  1.0000  0.1224  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    84  34460.  1.0000  0.0727  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    85  34655.  1.0000  0.0433  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    86  34850.  1.0000  0.0213  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    87  35045.  1.0000  0.0117  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    88  35240.  1.0000  0.0043  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    89  35435.  1.0000  0.0020  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    90  35630.  1.0000  0.0008  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    91  35825.  1.0000  0.0003  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     58 29390.  1.0000  0.9967  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     59 29585.  1.0000  0.9970  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     60 29780.  1.0000  0.9981  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     61 29975.  1.0000  0.9917  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     62 30170.  1.0000  0.9891  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     63 30365.  1.0000  0.9933  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     64 30560.  1.0000  0.9846  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     65 30755.  1.0000  0.9731  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     66 30950.  1.0000  0.9713  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     67 31145.  1.0000  0.9712  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     68 31340.  1.0000  0.9598  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     69 31535.  1.0000  0.9304  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     70 31730.  1.0000  0.9187  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     71 31925.  1.0000  0.8894  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     72 32120.  1.0000  0.8485  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     73 32315.  1.0000  0.8204  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     74 32510.  1.0000  0.7797  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     75 32705.  1.0000  0.7165  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     76 32900.  1.0000  0.6451  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     77 33095.  1.0000  0.5720  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     78 33290.  1.0000  0.4926  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     79 33485.  1.0000  0.4088  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     80 33680.  1.0000  0.3147  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     81 33875.  1.0000  0.2373  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     82 34070.  1.0000  0.1713  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     83 34265.  1.0000  0.1137  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     84 34460.  1.0000  0.0664  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     85 34655.  1.0000  0.0388  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     86 34850.  1.0000  0.0186  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     87 35045.  1.0000  0.0100  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     88 35240.  1.0000  0.0036  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     89 35435.  1.0000  0.0016  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     90 35630.  1.0000  0.0006  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
     91 35825.  1.0000  0.0002  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000  1.0000
    9292 36020.  1.0000  0.0001  1.0000  1.0000  1.0000  1.0000  0.9981  1.0000  1.0000  1.0000  1.0000
    93  36215.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.9780  1.0000  1.0000  1.0000  1.0000
    94  36410.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.9545  1.0000  1.0000  1.0000  1.0000
    95  36605.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.9272  1.0000  1.0000  1.0000  1.0000
    96  36800.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.8956  1.0000  1.0000  1.0000  1.0000
    97  36995.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.8594  1.0000  1.0000  1.0000  1.0000
    98  37190.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.8184  1.0000  1.0000  1.0000  1.0000
    99  37385.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.7722  1.0000  1.0000  1.0000  1.0000
    100  37580.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.7211  1.0000  1.0000  1.0000  1.0000
    101  37775.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.6652  1.0000  1.0000  1.0000  1.0000
    102  37970.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.6052  1.0000  1.0000  1.0000  1.0000
    103  38165.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.5420  1.0000  1.0000  1.0000  1.0000
    104  38360.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.4767  1.0000  1.0000  1.0000  1.0000
    105  38555.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.4109  1.0000  1.0000  1.0000  1.0000
    106  38750.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.3461  1.0000  1.0000  1.0000  1.0000
    107  38945.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.2843  1.0000  1.0000  1.0000  1.0000
    108  39140.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.2269  1.0000  1.0000  1.0000  1.0000
    109  39335.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.1756  1.0000  1.0000  1.0000  1.0000
    110  39530.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.1313  1.0000  1.0000  1.0000  1.0000
    111  39725.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.0946  1.0000  1.0000  1.0000  1.0000
    112  39920.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.0654  1.0000  1.0000  1.0000  1.0000
    113  40115.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.0434  1.0000  1.0000  1.0000  1.0000
     93 36215.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.9777  1.0000  1.0000  1.0000  1.0000
     94 36410.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.9540  1.0000  1.0000  1.0000  1.0000
     95 36605.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.9264  1.0000  1.0000  1.0000  1.0000
     96 36800.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.8945  1.0000  1.0000  1.0000  1.0000
     97 36995.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.8580  1.0000  1.0000  1.0000  1.0000
     98 37190.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.8165  1.0000  1.0000  1.0000  1.0000
     99 37385.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.7700  1.0000  1.0000  1.0000  1.0000
     100 37580.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.7185  1.0000  1.0000  1.0000  1.0000
     101 37775.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.6622  1.0000  1.0000  1.0000  1.0000
     102 37970.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.6019  1.0000  1.0000  1.0000  1.0000
     103 38165.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.5383  1.0000  1.0000  1.0000  1.0000
     104 38360.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.4728  1.0000  1.0000  1.0000  1.0000
     105 38555.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.4068  1.0000  1.0000  1.0000  1.0000
     106 38750.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.3421  1.0000  1.0000  1.0000  1.0000
     107 38945.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.2803  1.0000  1.0000  1.0000  1.0000
     108 39140.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.2232  1.0000  1.0000  1.0000  1.0000
     109 39335.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.1723  1.0000  1.0000  1.0000  1.0000
     110 39530.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.1284  1.0000  1.0000  1.0000  1.0000
     111 39725.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.0921  1.0000  1.0000  1.0000  1.0000
     112 39920.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.0635  1.0000  1.0000  1.0000  1.0000
     113 40115.  1.0000  0.0000  1.0000  1.0000  1.0000  1.0000  0.0419  1.0000  1.0000  1.0000  1.0000
    114114 -9999.
  • esaf_lal/branches/camille/simulation_file

    r167 r172  
    33echo "STARTING AT `date`"
    44
    5 numberevents="1"
     5numberevents="100"
    66numbersimulations="1"
    77n="1"
     
    1313        wait
    1414
    15 bin/x86_64/Simu -b --usrcfg=config/Balloon_KIT_Phase1.1.cfg  --events=$numberevents --seed=$numberseedfir
     15bin/x86_64/Simu -b --usrcfg=config/Balloon_v1_20ns.cfg  --events=$numberevents --seed=$numberseedfir
    1616
    1717        wait
Note: See TracChangeset for help on using the changeset viewer.