00001 #ifndef FASTSHOWER_HADEARLYECCONFIGURER_H 00002 #define FASTSHOWER_HADEARLYECCONFIGURER_H 00003 // 00005 // 00006 00007 #ifndef FASTSHOWER_ICONFIGURER_H 00008 #include "FastShowerUtils/IConfigurer.h" 00009 #endif 00010 00011 #ifndef FASTSHOWER_CONFIGURERBASE_H 00012 #include "FastShowerUtils/ConfigurerBase.h" 00013 #endif 00014 00015 #ifndef STD_STRING_H 00016 #define STD_STRING_H 00017 #include <string> 00018 #endif 00019 00020 #ifndef FASTSHOWER_SP_H 00021 #include "FastShowerUtils/SP.h" 00022 #endif 00023 00024 #ifndef STD_MAP_H 00025 #define STD_MAP_H 00026 #include <map> 00027 #endif 00028 00029 namespace FastShower{ 00030 00031 class HadEarlyEcConfigurer: 00032 virtual public IConfigurer, private ConfigurerBase{ 00033 public: 00034 HadEarlyEcConfigurer(Moni); 00035 HadEarlyEcConfigurer(NoMoni); 00036 ~HadEarlyEcConfigurer(){}; 00037 private: 00038 // ! no copy constructor, copy assignement 00039 HadEarlyEcConfigurer operator=(const HadEarlyEcConfigurer&); 00040 00043 ISampler* makeEAN() const; 00044 ISampler* makeHS0() const; 00045 ISampler* makeHC0() const; 00046 ISampler* makeHAN() const; 00047 00048 void addDepositorsE(); 00049 void addDepositorsH(); 00050 00051 virtual EnergyLimiter* energyLimiter() const; 00052 00053 void normalisers(); 00054 void initialise(); 00055 }; 00056 00057 }//namespace 00058 #endif 00059 00060 00061 00062 00063 00064