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