diff --git a/DDDigi/README.md b/DDDigi/README.md
index db3fdb0e13330c81f52ebffcde12d862b3d50bcc..58d5561f8d6c3e97a9224cd8da91dc0b625401d0 100644
--- a/DDDigi/README.md
+++ b/DDDigi/README.md
@@ -75,13 +75,72 @@ DDDigi Components Description
 
   Functionality: self explaining
 
-- <large>DigiAttenuator</large>
- 
-  <large>Deposit attenuator for energy deposits according to decay time constant. </large><br/>
+- DigiEventAction
+
+  Generic event level action which can execute workers in parallel
+  Properties: <br/>
+    |**Property**     |**Data type**    |**Description**                                                  |
+    |:---             |:---             |:---                                                             |
+    |`.parallel`      | boolean         | Flag to indicate parallel action execution                      |
+
+- DigiContainerProcessor
+
+  Base class of all actors dealing with one of more containers sequentially.<br/>
+
+- DigiContainerSequence
+
+  Sequencer of `DigiContainerProcessor` entities with container based work load splitting.<br/>
+
   Properties: <br/>
     |**Property**     |**Data type**    |**Description**                                                  |
     |:---             |:---             |:---                                                             |
-    |`.input`         | vector<string>  | List of input files to be processed                             |
+    |`.parallel`      | boolean         | Flag to indicate parallel action execution                      |
+
+- DigiContainerSequenceAction
+
+  Specialization of the `DigiEventAction`.
+  Process continers from the data store according to the `input_segment` and the `input_mask`.
+  Output of workers is delivered to the `output_segment` with mask `output_mask`.
+
+  Properties: Properties of the `DigiEventAction` apply!<br/>
+
+    |**Property**     |**Data type**    |**Description**                                                  |
+    |:---             |:---             |:---                                                             |
+    |`.input_segment` | string          | Name of the input data segment                                  |
+    |`.input_mask`    | integer         | Mask identifier of the input containers to be processed         |
+    |`.output_segment`| string          | Name of the output data segment                                 |
+    |`.output_mask`   | integer         | Mask identifier of the output containers                        |
+
+- DigiMultiContainerProcessor
+
+  Specialization of the `DigiEventAction`.
+  Process multiple containers from the data store according to the `input_segment` and the list of `input_masks`. Allows to re-use the same container action.
+  Output of workers is delivered to the `output_segment` with mask `output_mask`.
+
+  Properties: Properties of the `DigiEventAction` apply!<br/>
+
+    |**Property**     |**Data type**    |**Description**                                                  |
+    |:---             |:---             |:---                                                             |
+    |`.input_segment` | string          | Name of the input data segment                                  |
+    |`.input_mask`    | integer         | Mask identifier of the input containers to be processed         |
+    |`.output_segment`| string          | Name of the output data segment                                 |
+    |`.output_mask`   | integer         | Mask identifier of the output containers                        |
+
+- DigiAttenuator
+ 
+  Deposit attenuator for energy deposits according to decay time constant. <br/>
+  Action functor of the `DigiAttenuatorSequence` <br/>
+  Properties: Properties of the `DigiContainerSequenceProcessor` apply! <br/>
+    |**Property**     |**Data type**    |**Description**                                            |
+    |:---             |:---             |:---                                                       |
+    |`.factor`        | double          | Signal reduction factor applied to all entries processed  |
+
+- DigiAttenuatorSequence
+ 
+  Container sequencer to attenuate a list of containers.
+  Properties:  Properties of the `DigiContainerSequenceAction` apply! <br/>
+    |**Property**     |**Data type**    |**Description**                                                  |
+    |:---             |:---             |:---                                                             |
     |`.processor_type`| string          | Processor type used for single container attenuation.           |
     |                 |                 | default: `DigiAttenuator`                                       |
     |`.containers`    | vector<string>  | List of containers to be attenuated.                            |
diff --git a/DDDigi/include/DDDigi/DigiContainerProcessor.h b/DDDigi/include/DDDigi/DigiContainerProcessor.h
index 5c83cfcf381f7e80c0ef0f2da341bec9a216a4d2..78ccab793bd5ec0afbeea758e4ded6db9e50701a 100644
--- a/DDDigi/include/DDDigi/DigiContainerProcessor.h
+++ b/DDDigi/include/DDDigi/DigiContainerProcessor.h
@@ -116,8 +116,6 @@ namespace dd4hep {
 	template <typename DATA> DATA* get_input(bool exc=false);
 	/// Access input data by type
 	template <typename DATA> const DATA* get_input(bool exc=false)  const;
-	/// Access the deposit history of a deposit container
-	const DepositsHistory* get_history(const std::string& container, bool exc=false)  const;
       };
 
       /// Monitoring object
diff --git a/DDDigi/plugins/DigiDepositSmearPositionTrack.cpp b/DDDigi/plugins/DigiDepositSmearPositionTrack.cpp
index f4746c598e41057083c204f84014d6beda677453..ece996856444a8d7cbc1f50b309e423d358899ed 100644
--- a/DDDigi/plugins/DigiDepositSmearPositionTrack.cpp
+++ b/DDDigi/plugins/DigiDepositSmearPositionTrack.cpp
@@ -58,12 +58,11 @@ namespace dd4hep {
 
       /// Create deposit mapping with updates on same cellIDs
       template <typename T> void
-      smear(DigiContext& context, T& cont, work_t& work, const predicate_t& predicate)  const  {
+      smear(DigiContext& context, T& cont, work_t& /* work */, const predicate_t& predicate)  const  {
 	constexpr double eps = detail::numeric_epsilon;
 	auto& random = context.randomGenerator();
 	const auto& ev = *(context.event);
 	std::size_t updated = 0UL;
-	auto* h = work.get_history(cont.name);
 
 	VolumeManager volMgr = m_kernel.detectorDescription().volumeManager();
 	for( auto& dep : cont )    {
diff --git a/DDDigi/src/DigiContainerProcessor.cpp b/DDDigi/src/DigiContainerProcessor.cpp
index 7c87f6ef5dc58368988f844ec8226692abce3fa2..d3320ada96b05e66f0c3a549a5dfd5d72c6e0cde 100644
--- a/DDDigi/src/DigiContainerProcessor.cpp
+++ b/DDDigi/src/DigiContainerProcessor.cpp
@@ -73,17 +73,6 @@ template const DetectorHistory*  DigiContainerProcessor::work_t::get_input(bool
 template       DetectorResponse* DigiContainerProcessor::work_t::get_input(bool exc);
 template const DetectorResponse* DigiContainerProcessor::work_t::get_input(bool exc)  const;
 
-/// Access the deposit history of a deposit container
-const DepositsHistory* 
-DigiContainerProcessor::work_t::get_history(const std::string& container, bool exc)  const  {
-  std::string hist_name = container+".hist";
-  if ( exc )   {
-    dd4hep::except("DigiContainerProcessor", "+++ Cannot access history %s.", hist_name.c_str());
-  }
-  return nullptr;
-}
-
-
 /// input data type
 const std::type_info& DigiContainerProcessor::work_t::input_type()  const   {
   return input.data->type();