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