CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
edm::DataMixingGeneralTrackWorker Class Reference

#include <DataMixingGeneralTrackWorker.h>

Public Member Functions

void addGeneralTrackPileups (const int bcr, const edm::EventPrincipal *, unsigned int EventId)
 
void addGeneralTrackSignals (const edm::Event &e)
 
 DataMixingGeneralTrackWorker ()
 
 DataMixingGeneralTrackWorker (const edm::ParameterSet &ps)
 
void putGeneralTrack (edm::Event &e)
 
virtual ~DataMixingGeneralTrackWorker ()
 

Private Attributes

std::string GeneralTrackCollectionDM_
 
edm::InputTag GeneralTrackcollectionSig_
 
edm::InputTag GeneralTrackLabelSig_
 
edm::InputTag GeneralTrackPileInputTag_
 
std::auto_ptr
< reco::TrackCollection
NewTrackList_
 

Detailed Description

Definition at line 36 of file DataMixingGeneralTrackWorker.h.

Constructor & Destructor Documentation

DataMixingGeneralTrackWorker::DataMixingGeneralTrackWorker ( )

Definition at line 26 of file DataMixingGeneralTrackWorker.cc.

26 { }
DataMixingGeneralTrackWorker::DataMixingGeneralTrackWorker ( const edm::ParameterSet ps)
explicit

standard constructor

Definition at line 29 of file DataMixingGeneralTrackWorker.cc.

References edm::ParameterSet::getParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

30  {
31 
32  // get the subdetector names
33  // this->getSubdetectorNames(); //something like this may be useful to check what we are supposed to do...
34 
35  // declare the products to produce
36 
37  GeneralTrackLabelSig_ = ps.getParameter<edm::InputTag>("GeneralTrackLabelSig");
38 
39  GeneralTrackPileInputTag_ = ps.getParameter<edm::InputTag>("GeneralTrackPileInputTag");
40 
41  GeneralTrackCollectionDM_ = ps.getParameter<std::string>("GeneralTrackDigiCollectionDM");
42 
43  }
T getParameter(std::string const &) const
DataMixingGeneralTrackWorker::~DataMixingGeneralTrackWorker ( )
virtual

Default destructor

Definition at line 47 of file DataMixingGeneralTrackWorker.cc.

47  {
48  }

Member Function Documentation

void DataMixingGeneralTrackWorker::addGeneralTrackPileups ( const int  bcr,
const edm::EventPrincipal ep,
unsigned int  EventId 
)

Definition at line 76 of file DataMixingGeneralTrackWorker.cc.

References edm::EventPrincipal::id(), LogDebug, and testEve_cfg::tracks.

Referenced by edm::DataMixingModule::pileWorker().

76  {
77  LogDebug("DataMixingGeneralTrackWorker") <<"\n===============> adding pileups from event "<<ep->id()<<" for bunchcrossing "<<bcr;
78 
79 
80  boost::shared_ptr<Wrapper<reco::TrackCollection > const> inputPTR =
81  getProductByTag<reco::TrackCollection >(*ep, GeneralTrackPileInputTag_ );
82 
83  if(inputPTR ) {
84 
85  const reco::TrackCollection *tracks = const_cast< reco::TrackCollection * >(inputPTR->product());
86 
87  // grab tracks, store copy
88 
89 
90  for (reco::TrackCollection::const_iterator track = tracks->begin(); track != tracks->end(); ++track) {
91  NewTrackList_->push_back(*track);
92  }
93 
94  }
95 
96  }
#define LogDebug(id)
EventID const & id() const
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:10
std::auto_ptr< reco::TrackCollection > NewTrackList_
tuple tracks
Definition: testEve_cfg.py:39
void DataMixingGeneralTrackWorker::addGeneralTrackSignals ( const edm::Event e)

Definition at line 52 of file DataMixingGeneralTrackWorker.cc.

References edm::Event::getByLabel(), and testEve_cfg::tracks.

Referenced by edm::DataMixingModule::addSignals().

52  {
53 
54  // Create new track list; Rely on the fact that addSignals gets called first...
55 
56  NewTrackList_ = std::auto_ptr<reco::TrackCollection>(new reco::TrackCollection());
57 
58  // grab tracks, store copy
59 
60  //edm::Handle<reco::TrackCollection> generalTrkHandle;
61  //e.getByLabel("generalTracks", generalTrkHandle);
64 
65  if (tracks.isValid()) {
66  for (reco::TrackCollection::const_iterator track = tracks->begin(); track != tracks->end(); ++track) {
67  NewTrackList_->push_back(*track);
68  }
69 
70  }
71 
72  } // end of addGeneralTrackSignals
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:10
std::auto_ptr< reco::TrackCollection > NewTrackList_
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
tuple tracks
Definition: testEve_cfg.py:39
void DataMixingGeneralTrackWorker::putGeneralTrack ( edm::Event e)

Definition at line 100 of file DataMixingGeneralTrackWorker.cc.

References edm::Event::put().

Referenced by edm::DataMixingModule::put().

100  {
101 
102  // collection of Tracks to put in the event
103 
104  // put the collection of digis in the event
105  LogInfo("DataMixingGeneralTrackWorker") << "total # Merged Tracks: " << NewTrackList_->size() ;
106 
107  // put collection
108 
110 
111  // clear local storage for this event
112  //NewTrackList_.clear();
113  }
std::auto_ptr< reco::TrackCollection > NewTrackList_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94

Member Data Documentation

std::string edm::DataMixingGeneralTrackWorker::GeneralTrackCollectionDM_
private

Definition at line 59 of file DataMixingGeneralTrackWorker.h.

edm::InputTag edm::DataMixingGeneralTrackWorker::GeneralTrackcollectionSig_
private

Definition at line 56 of file DataMixingGeneralTrackWorker.h.

edm::InputTag edm::DataMixingGeneralTrackWorker::GeneralTrackLabelSig_
private

Definition at line 57 of file DataMixingGeneralTrackWorker.h.

edm::InputTag edm::DataMixingGeneralTrackWorker::GeneralTrackPileInputTag_
private

Definition at line 58 of file DataMixingGeneralTrackWorker.h.

std::auto_ptr<reco::TrackCollection> edm::DataMixingGeneralTrackWorker::NewTrackList_
private

Definition at line 63 of file DataMixingGeneralTrackWorker.h.