00001 #ifndef FASTSHOWER_SOFTPHOTONECCONFIGURER_H 00002 #define FASTSHOWER_SOFTPHOTONECCONFIGURER_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 SoftPhotonEcConfigurer: 00032 virtual public IConfigurer, private ConfigurerBase{ 00033 public: 00034 SoftPhotonEcConfigurer(Moni); 00035 SoftPhotonEcConfigurer(NoMoni); 00036 ~SoftPhotonEcConfigurer(){}; 00037 private: 00038 // ! no copy constructor, copy assignement 00039 SoftPhotonEcConfigurer operator=(const SoftPhotonEcConfigurer&); 00040 00043 ISampler* makeSN() const; 00044 ISampler* makeAN() const; 00045 void addDepositorsE(); 00046 void addDepositorsH(); 00047 00048 void normalisers(); 00049 void initialise(); 00050 }; 00051 00052 }//namespace 00053 #endif 00054 00055 00056 00057 00058 00059