CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MixingWorkerBase.cc
Go to the documentation of this file.
1 // File: MixingWorkerBase.cc
2 // Description: see MixingWorkerBase.h
3 // Author: Ursula Berthon, LLR Palaiseau
4 //
5 //--------------------------------------------
6 
14 #include "MixingWorkerBase.h"
15 #include "boost/shared_ptr.hpp"
16 
17 namespace edm
18 {
19 
20  // Constructor
21  //FIXME: subdet here?
22  MixingWorkerBase::MixingWorkerBase(int minBunch,int maxBunch,int bunchSpace,std::string &subdet, std::string &label,std::string &labelCF,unsigned int maxNbSources, InputTag &tag, InputTag &tagCF, bool mixProdStep2) :
23  minBunch_(minBunch),
24  maxBunch_(maxBunch),
25  bunchSpace_(bunchSpace),
26  subdet_(subdet),
27  label_(label),
28  labelCF_(labelCF),
29  maxNbSources_(maxNbSources),
30  tag_(tag),
31  tagSignal_(tagCF)
32  {
33  }
34 
35  // Virtual destructor needed.
37  }
38 
39 }//edm
const std::string & label
Definition: MVAComputer.cc:186