00001
00002
00003
00004
00005
00006
00007 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00008 #include "FWCore/Utilities/interface/EDMException.h"
00009 #include "FWCore/Framework/interface/ConstProductRegistry.h"
00010 #include "FWCore/ServiceRegistry/interface/Service.h"
00011 #include "FWCore/Framework/interface/EventPrincipal.h"
00012 #include "DataFormats/Common/interface/Handle.h"
00013 #include "DataFormats/Provenance/interface/ModuleDescription.h"
00014 #include "MixingWorkerBase.h"
00015 #include "boost/shared_ptr.hpp"
00016
00017 namespace edm
00018 {
00019
00020
00021
00022 MixingWorkerBase::MixingWorkerBase(int minBunch,int maxBunch,int bunchSpace,std::string &subdet, std::string &label, unsigned int maxNbSources, InputTag &tag, bool isTracker) :
00023 minBunch_(minBunch),
00024 maxBunch_(maxBunch),
00025 bunchSpace_(bunchSpace),
00026 subdet_(subdet),
00027 label_(label),
00028 maxNbSources_(maxNbSources),
00029 tag_(tag),
00030 isTracker_(isTracker)
00031 {
00032 checktof_=true;
00033 opp_=InputTag();
00034 }
00035
00036
00037 MixingWorkerBase::~MixingWorkerBase() {
00038 }
00039
00040 }