← Back to team overview

kaliveda-dev team mailing list archive

[Bug 578177] Re: Arrêt du programme

 

** Changed in: kaliveda/1.7
       Status: Incomplete => Won't Fix

** Changed in: kaliveda/1.8
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of KaliVeda
Development Team, which is subscribed to KaliVeda.
https://bugs.launchpad.net/bugs/578177

Title:
  Arrêt du programme

Status in KaliVeda data analysis framework:
  Fix Released
Status in KaliVeda 1.7 series:
  Won't Fix
Status in KaliVeda 1.8 series:
  Fix Released

Bug description:
  Bonjour, 
  Voici un problème que je rencontre à la fin de mon programme d'analyse. 
  Mon programme tourne normalement, mais ne s'arrête pas. 
  Lorsque je le lance en interactif, ce n'est pas grave, je reprends la main en appuyant sur entrée. Par contre, pour le lancement en "parallèle batch", le job est "running", alors qu'il a terminé sa compilation.

  Voici la fin de mon programme analyse.cpp : 
   
  void analyse::EndRun(void)
   {
   // Called at the end of each run
   //
       Info("EndRun","");
   //
   // Enter your code here
   //
   
  // cout<<"Le programme passe par EndRun"<<endl;
  cout << "Fin du run " << gIndra->GetCurrentRunNumber() << endl;

   }

  //_____________________________________
  void analyse::EndAnalysis(void)
   {
   //    
       my_file->Write();
       my_file->Close();
      delete my_file;  
   //
   // cout<<"Le programme passe par EndAnalysis"<<endl;

   }

  
  Voici ce que j'obtiens après l'excécution du run :

  Beginning processing of TChain :
  root://ccxroot.in2p3.fr:1999//hpss/in2p3.fr/group/indra/campagne2/root/run1414.root.2006-05-16_16:17:55 tree:tree entries=414265
  Analyse du fichier root://ccxroot.in2p3.fr:1999//hpss/in2p3.fr/group/indra/campagne2/root/run1414.root.2006-05-16_16:17:55 : 414265

   ===================  New Run  ===================

  ___________________________________________________
  Run 1414  (58Ni + 58Ni 52 MeV/A)
  System : 58Ni + 58Ni 52 MeV/A
  Target : 58Ni
  ___________________________________________________
  Comments = HT Cible 30,1 kV
  ___________________________________________________
  Dead time (%) = 21.12
  ___________________________________________________
  Events = 445241
  Faraday 1 = 6635
  Buffers = 10513
  Gene DIRECT = 279144
  Gene MARQ = 48668
  Gene TM = 48668
  Trigger multiplicity = 4
  ___________________________________________________
   ***** REACTION    58Ni  +  58Ni    ******
    E.LAB = 3016 MEV
    E.EXC = 0 MEV
   AVAILABLE ENERGY IN C.M. : ECM = 1497.61 MEV  (12.9104 MEV/A)
   PROJECTILE VELOCITY IN LAB 9.62403 CM/NS  ( 0.321023 * C )
   VELOCITY OF C.M.           4.94282 CM/NS
   ENERGY - VELOCITY OF NUCLEUS 1 IN CM : 748.805 MEV  4.94282 CM/NS
   ENERGY - VELOCITY OF NUCLEUS 2 IN CM : 748.805 MEV  4.94282 CM/NS
   GRAZING ANGLE IN LABORATORY : PROJECTILE 1.93779 DEG.
   GRAZING ANGLE IN LABORATORY : TARGET     88.0622 DEG.

   =================================================

    --> No pulser & laser data for this run !!!

  Info in <analyse::InitRun>:
  2053.33
  Info in <analyse::EndRun>:
  Fin du run 1414

   ====================== END ======================

     Total number of events read     = 100
     Real time = 0.822315 sec.
      CPU time = 0.75 sec.
     Events/Real sec. = 121.608
      Events/CPU sec. = 133.333

   ====================== END ======================

  Le programme a tourné, mais je n'ai pas la main !

  
  Pourriez-vous me dire pourquoi mon programme ne s'arrête pas ?
  Je vous en remercie à l'avance.