CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MixEvtVtxGenerator.cc
Go to the documentation of this file.
1 #ifndef HI_MixEvtVtxGenerator_H
2 #define HI_MixEvtVtxGenerator_H
3 /*
4 */
7 
15 
19 
22 
23 #include "TMatrixD.h"
24 
25 using namespace edm;
26 using namespace std;
27 
28 
29 namespace HepMC {
30  class FourVector ;
31 }
32 
33 
35 {
36  public:
37 
38  // ctor & dtor
39  explicit MixEvtVtxGenerator( const edm::ParameterSet& );
40  virtual ~MixEvtVtxGenerator();
41 
42  virtual void produce( edm::Event&, const edm::EventSetup& ) override;
43 
44  virtual HepMC::FourVector* getVertex(edm::Event&);
45  virtual HepMC::FourVector* getRecVertex(edm::Event&);
46 
47  protected:
48 
49  HepMC::FourVector* fVertex ;
50  TMatrixD *boost_;
51 
52  private :
53 
57 
59  std::vector<double> vtxOffset;
60  bool useCF_;
61 
62 };
63 
65  : fVertex(0), boost_(0),
66  useRecVertex(pset.exists("useRecVertex")?pset.getParameter<bool>("useRecVertex"):false)
67 
68 {
69  produces<bool>("matchedVertex");
70  vtxOffset.resize(3);
71  if(pset.exists("vtxOffset")) vtxOffset=pset.getParameter< std::vector<double> >("vtxOffset");
72 
73  if(useRecVertex) useCF_ = 0;
74  else{
75  useCF_ = pset.getUntrackedParameter<bool>("useCF",false);
76  cfLabel = consumes<CrossingFrame<HepMCProduct> >(pset.getUntrackedParameter<edm::InputTag>("mixLabel",edm::InputTag("mixGen","generator")));
77  }
78  signalLabel = consumes<HepMCProduct>(pset.getParameter<edm::InputTag>("signalLabel"));
79  hiLabel = consumes<reco::VertexCollection>(pset.getParameter<edm::InputTag>("heavyIonLabel"));
80 
81 
82 }
83 
85 {
86  delete fVertex ;
87  if (boost_ != 0 ) delete boost_;
88  // no need since now it's done in HepMCProduct
89  // delete fEvt ;
90 }
91 
92 HepMC::FourVector* MixEvtVtxGenerator::getVertex( Event& evt){
93 
94  HepMC::GenVertex* genvtx = 0;
95  const HepMC::GenEvent* inev = 0;
96 
97  //cout<<" use CF "<<useCF_<<endl;
98 
99  if(useCF_){
101  evt.getByToken(cfLabel,cf);
103  if(mix.size() < 2){
104  cout<<"Less than 2 sub-events, mixing seems to have failed!"<<endl;
105  }
106  const HepMCProduct& bkg = mix.getObject(1);
107  if(!(bkg.isVtxGenApplied())){
108  cout<<"Input does not have smeared vertex!"<<endl;
109  }else{
110  inev = bkg.GetEvent();
111  }
112  }else{
113  //cout<<" hiLabel "<<hiLabel<<endl;
115  evt.getByToken(signalLabel,input);
116  inev = input->GetEvent();
117  }
118 
119  genvtx = inev->signal_process_vertex();
120  if(!genvtx){
121  //cout<<"No Signal Process Vertex!"<<endl;
122  HepMC::GenEvent::particle_const_iterator pt=inev->particles_begin();
123  HepMC::GenEvent::particle_const_iterator ptend=inev->particles_end();
124  while(!genvtx || ( genvtx->particles_in_size() == 1 && pt != ptend ) ){
125  //if(!genvtx) cout<<"No Gen Vertex!"<<endl;
126  if(pt == ptend) cout<<"End reached, No Gen Vertex!"<<endl;
127  genvtx = (*pt)->production_vertex();
128  ++pt;
129  }
130  }
131  double aX,aY,aZ,aT;
132 
133  aX = genvtx->position().x();
134  aY = genvtx->position().y();
135  aZ = genvtx->position().z();
136  aT = genvtx->position().t();
137 
138  if(!fVertex){
139  fVertex = new HepMC::FourVector();
140  //cout<<" creating new vertex "<<endl;
141  }
142  //cout<<" setting vertex "<<" aX "<<aX<<" aY "<<aY<<" aZ "<<aZ<<" aT "<<aT<<endl;
143  fVertex->set(aX,aY,aZ,aT);
144 
145 
146  return fVertex;
147 
148 }
149 
150 
151 HepMC::FourVector* MixEvtVtxGenerator::getRecVertex( Event& evt){
152 
154  evt.getByToken(hiLabel,input);
155 
156  double aX,aY,aZ;
157 
158  aX = input->begin()->position().x() + vtxOffset[0];
159  aY = input->begin()->position().y() + vtxOffset[1];
160  aZ = input->begin()->position().z() + vtxOffset[2];
161 
162  /*
163  std::cout << "reco::Vertex = " << input->begin()->position().x()
164  << ", " << input->begin()->position().y()
165  << ", " << input->begin()->position().z()
166  << std::endl;
167 
168  std::cout << "offset = " << vtxOffset[0]
169  << ", " << vtxOffset[1]
170  << ", " << vtxOffset[2]
171  << std::endl;
172 
173  std::cout << "embedded GEN vertex = " << aX
174  << ", " << aY << ", " << aZ << std::endl;
175 
176  */
177  if(!fVertex) fVertex = new HepMC::FourVector();
178  fVertex->set(10.0*aX,10.0*aY,10.0*aZ,0.0); // HepMC positions in mm (RECO in cm)
179 
180  return fVertex;
181 
182 }
183 
185 {
186 
187 
188  Handle<HepMCProduct> HepMCEvt ;
189 
190  evt.getByToken( signalLabel, HepMCEvt ) ;
191 
192  // generate new vertex & apply the shift
193  //
194 
195  HepMCEvt->applyVtxGen( useRecVertex ? getRecVertex(evt) : getVertex(evt) ) ;
196 
197  // HepMCEvt->boostToLab( GetInvLorentzBoost(), "vertex" );
198  // HepMCEvt->boostToLab( GetInvLorentzBoost(), "momentum" );
199 
200  // OK, create a (pseudo)product and put in into edm::Event
201  //
202  auto_ptr<bool> NewProduct(new bool(true)) ;
203  evt.put( NewProduct ,"matchedVertex") ;
204 
205  return ;
206 
207 }
208 
210 
211 #endif
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
virtual HepMC::FourVector * getRecVertex(edm::Event &)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
std::vector< double > vtxOffset
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
bool exists(std::string const &parameterName) const
checks if a parameter exists
MixEvtVtxGenerator(const edm::ParameterSet &)
virtual void produce(edm::Event &, const edm::EventSetup &) override
virtual HepMC::FourVector * getVertex(edm::Event &)
static std::string const input
Definition: EdmProvDump.cc:44
return((rh^lh)&mask)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
edm::EDGetTokenT< CrossingFrame< HepMCProduct > > cfLabel
edm::EDGetTokenT< reco::VertexCollection > hiLabel
edm::EDGetTokenT< HepMCProduct > signalLabel
const HepMC::GenEvent * GetEvent() const
Definition: HepMCProduct.h:35
HepMC::FourVector * fVertex
bool isVtxGenApplied() const
Definition: HepMCProduct.h:37
T const * product() const
Definition: Handle.h:81
tuple cout
Definition: gather_cfg.py:121
volatile std::atomic< bool > shutdown_flag false