Skip to content
Snippets Groups Projects
  1. Feb 12, 2015
  2. Feb 10, 2015
  3. Feb 05, 2015
  4. Feb 04, 2015
  5. Jan 29, 2015
  6. Jan 22, 2015
  7. Nov 12, 2014
  8. Oct 30, 2014
  9. Oct 24, 2014
  10. Sep 19, 2014
  11. Sep 17, 2014
  12. Jul 08, 2014
  13. Jul 02, 2014
  14. Jun 30, 2014
  15. Jun 19, 2014
  16. Jun 13, 2014
  17. May 22, 2014
  18. May 21, 2014
    • BaM's avatar
      commentary addition, · 2f7c865f
      BaM authored
      const addition for some get method….
      
      git-svn-id: svn+ssh://svn.in2p3.fr/class@252 0e7d625b-0364-4367-a6be-d5be4a48d228
      2f7c865f
    • BaM's avatar
      Adding a new class : The CLASS BackEnd. · bc6df5a2
      BaM authored
      The aim of this class is to describe all the facility used in the backend of the fuel cycle.
      
      the reactor output fuel facility is now a BackEnd, so it is possible to go directly to a stock, or to chain the Pool, if wanted.
      
      CLSSObject and CLSSFacility also became CLASSObject and CLASSFacility respectively without any major change.
      
      git-svn-id: svn+ssh://svn.in2p3.fr/class@250 0e7d625b-0364-4367-a6be-d5be4a48d228
      bc6df5a2
  19. May 05, 2014
  20. May 04, 2014
  21. Apr 08, 2014
  22. Jan 14, 2014
  23. Aug 14, 2013
    • BaM's avatar
      HUDGE UPDATE : · 02f47d41
      BaM authored
      Introducing the CLSSObject and CLSSFacility in order to simplify the shared properties between must of the CLASS object :
      Almost all the CLASS Object will inherit of the CLSSObject class, which actually only include the log file.(Except class ZAI IsotopicVector)
      All facility in CLASS now inherit of the CLSSFacility, which are a CLSSObject and a TNamed (from ROOT/CERN library).
      In the CLSSFacility, one can found :
      fId, fParc, fCreationTime, fLifeTime as private variable (the daughter class can not access directly to this member, one need to use the setter and getter - SetId(int) by ex-)
      fIsStarted, fShutDown, fEndOfCycle, fInternalTime, fInCycleTime, fCycleTime, fInsideIV as protected member (the daughter class can directly modify this variable - also accessible via setter/getter)
      this repartition between private and protected could change in the future, 
      fCycleTime replace fCoolingTime and fFabricationTime in respectively Pool and FabricationPlant
      
      Those variable are shared by almost all the facility, it is then more convenient to regroup them. 
      For all facility the fInsideIV represent the total amount of fuel in the facility, in the case of the Reactor, this is also the fuel inside the reactor (it replace the old fReactorIV)
      
      If it is needed to add any variable to all CLASS Object (except ZAI and IsotopicVector), one should use the CLSSObject, for the facility, use CLSSFacility.
      
      + All ClassDef of the daughter facilities change from 1 to 2 (because of the inheritance), the ClassDef of the CLSSObject has been set to 0, and 1 for CLSSFacility (as explain in rootcin doc, 0 mean no I/O, 1 is the first level, and should increase by 1 at each inheritance...)
      
      Resolve the small glitch (not really a bug) which cause the warning at the execution of a scenario, and at the reading of the output in ROOT, using #ifndef __CINT__ // #endif  to exclude some part of the variable at the compilation of the root library...
      
      
      BaM
      
      
      git-svn-id: svn+ssh://svn.in2p3.fr/class@115 0e7d625b-0364-4367-a6be-d5be4a48d228
      02f47d41
  24. Jun 07, 2013
  25. Jun 05, 2013
  26. Jun 04, 2013
    • BaM's avatar
      By BaM · 3fcf1a65
      BaM authored
      IsotopicVector, Storage : improve Write function (-1 as time will not print the time in the file)
      
      Storage, Reactor, Pool, FabricationPlant : Add log.
      
      FabricationPlant : Add Substitution Fuel loaded if not enough stock to build the needed fuel.
      
      git-svn-id: svn+ssh://svn.in2p3.fr/class@77 0e7d625b-0364-4367-a6be-d5be4a48d228
      3fcf1a65
  27. Jun 03, 2013
    • BaM's avatar
      Name Update : · 3b1180fc
      BaM authored
      TreatmentFactory -> Pool
      EvolutiveProduct -> EvolutionData
      EvolutionDataBase -> DataBank
      
      git-svn-id: svn+ssh://svn.in2p3.fr/class@74 0e7d625b-0364-4367-a6be-d5be4a48d228
      3b1180fc
    • BaM's avatar
      Changing TF nanme to Pool · 54629458
      BaM authored
      git-svn-id: svn+ssh://svn.in2p3.fr/class@73 0e7d625b-0364-4367-a6be-d5be4a48d228
      54629458
    • BaM's avatar
      UPDATE : · c0b0329f
      BaM authored
      ALL : 
      new Type cSecond long long int;
      
      IsotopicVector :
      Add write;
      
      Evolution product :
      GetXSForAt()
      
      Reactor :
      Add new Creator
      
      Storage : 
      Add write function : write all the stock inventory at the t time
      
      TreatmentFactory :
      GetFullCooling()
      
      
      
      git-svn-id: svn+ssh://svn.in2p3.fr/class@71 0e7d625b-0364-4367-a6be-d5be4a48d228
      c0b0329f
  28. Feb 08, 2013
  29. Feb 05, 2013
    • BaM's avatar
      VERSION 1.2.1 : · 897d3f05
      BaM authored
      Makefile : remove the "make fullclean" and put it in the "make clean" and adding "make ocean" to remove only .o file :
      make -> compile the source
      make clean -> remove all compilation file : *.o and *Dict.cxx
      make ocean -> only remove the object file : *.o
      
      
      TreatmentFactory :
      Adding fPutToWaste boolean : true to put IV in Waste after cooling false instead
      if a storage is set fPutToWaste goes automatically to false;
      
      CLASS : 
      Add method to set manually TTree and File Output Name
      
      
      git-svn-id: svn+ssh://svn.in2p3.fr/class@57 0e7d625b-0364-4367-a6be-d5be4a48d228
      897d3f05
  30. Feb 04, 2013
  31. Oct 08, 2012
    • BaM's avatar
      CLASS Version 2.0.0 · a290cc16
      BaM authored
      New : Storage, FabricationPlant
      Update : 
      TreatmentFactory : perform only cooling now
      EvolutionDatabase : move to template T map<T, EvolutiveProduct>
      EvolutiveProduct : Add one group evolution code
      CLASS : Add all reactor in Ouput
      
      
      
      git-svn-id: svn+ssh://svn.in2p3.fr/class@37 0e7d625b-0364-4367-a6be-d5be4a48d228
      a290cc16
  32. Jun 05, 2012
Loading