CMS 3D CMS Logo

Public Member Functions | Private Attributes

HiBasicGenTest Class Reference

#include <HiBasicGenTest.h>

Inheritance diagram for HiBasicGenTest:
edm::EDAnalyzer

List of all members.

Public Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
virtual void beginJob ()
virtual void beginRun (const edm::Run &, const edm::EventSetup &)
virtual void endJob ()
virtual void endRun (const edm::Run &, const edm::EventSetup &)
 HiBasicGenTest (const edm::ParameterSet &)
virtual ~HiBasicGenTest ()

Private Attributes

MonitorElementb [3]
DQMStoredbe
MonitorElementdnchdeta [3]
MonitorElementdnchdphi [3]
MonitorElementdnchdpt [3]
edm::ESHandle< ParticleDataTablepdt
MonitorElementrp

Detailed Description

Definition at line 18 of file HiBasicGenTest.h.


Constructor & Destructor Documentation

HiBasicGenTest::HiBasicGenTest ( const edm::ParameterSet iPSet) [explicit]

Definition at line 17 of file HiBasicGenTest.cc.

References cppFunctionSkipper::operator.

HiBasicGenTest::~HiBasicGenTest ( ) [virtual]

Definition at line 23 of file HiBasicGenTest.cc.

{}

Member Function Documentation

void HiBasicGenTest::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
) [virtual]

Implements edm::EDAnalyzer.

Definition at line 65 of file HiBasicGenTest.cc.

References b, begin, DeDxDiscriminatorTools::charge(), end, eta(), edm::Event::getByLabel(), AlCaHLTBitMon_ParallelJobs::p, phi, pi, and Pi.

{ 

  Handle<HepMCProduct> mc;
  iEvent.getByLabel("generator",mc);
  const HepMC::GenEvent *evt = mc->GetEvent();
  const HepMC::HeavyIon *hi = evt->heavy_ion();
  
  double ip = hi->impact_parameter();
  double phi0 = hi->event_plane_angle();

  // fill reaction plane distribution
  rp->Fill(phi0);
  
  // if the event is in one of the centrality bins of interest fill hists
  int cbin=-1;
  if(ip < 5.045) cbin=0;
  else if (ip < 7.145 && ip > 5.045) cbin=1;
  else if (ip < 15.202 && ip > 14.283) cbin=2;
  if(cbin<0) return;

  // fill impact parameter distributions
  b[cbin]->Fill(ip);

  // loop over particles
  HepMC::GenEvent::particle_const_iterator begin = evt->particles_begin();
  HepMC::GenEvent::particle_const_iterator end = evt->particles_end();
  for(HepMC::GenEvent::particle_const_iterator it = begin; it != end; ++it){
    
    // only fill hists for status=1 particles
    if((*it)->status() != 1) continue;

    // only fill hists for charged particles
    int pdg_id = (*it)->pdg_id();
    const ParticleData * part = pdt->particle(pdg_id);
    int charge = static_cast<int>(part->charge());
    if(charge==0) continue;
    
    float eta = (*it)->momentum().eta();
    float phi = (*it)->momentum().phi();
    float pt = (*it)->momentum().perp();
    
    dnchdeta[cbin]->Fill(eta);
    dnchdpt[cbin]->Fill(pt);
    
    double pi = TMath::Pi();
    double p = phi-phi0;
    if(p > pi) p = p - 2*pi;
    if(p < -1*pi) p = p + 2*pi;
    dnchdphi[cbin]->Fill(p);

  } 

  return;

}
void HiBasicGenTest::beginJob ( void  ) [virtual]

Setting the DQM top directories

Booking the ME's

Reimplemented from edm::EDAnalyzer.

Definition at line 25 of file HiBasicGenTest.cc.

References b.

{
  if(dbe){
    dbe->setCurrentFolder("Generator/Particles");
    
    for(int ibin=0; ibin<3; ibin++) {
      dnchdeta[ibin] = dbe->book1D(Form("dnchdeta%d",ibin), ";#eta;dN^{ch}/d#eta", 100, -6.0, 6.0);
      dnchdpt[ibin] = dbe->book1D(Form("dnchdpt%d",ibin), ";p_{T};dN^{ch}/dp_{T}", 200, 0.0, 100.0);
      b[ibin] = dbe->book1D(Form("b%d",ibin),";b[fm];events",100, 0.0, 20.0);
      dnchdphi[ibin] = dbe->book1D(Form("dnchdphi%d",ibin),";#phi;dN^{ch}/d#phi",100, -3.2, 3.2);

      dbe->tag(dnchdeta[ibin]->getFullname(),1+ibin*4);
      dbe->tag(dnchdpt[ibin]->getFullname(),2+ibin*4);
      dbe->tag(b[ibin]->getFullname(),3+ibin*4);
      dbe->tag(dnchdphi[ibin]->getFullname(),4+ibin*4);
    }

    rp = dbe->book1D("phi0",";#phi_{RP};events",100,-3.2,3.2);
    dbe->tag(rp->getFullname(),13);


 }
  return;
}
void HiBasicGenTest::beginRun ( const edm::Run iRun,
const edm::EventSetup iSetup 
) [virtual]

Reimplemented from edm::EDAnalyzer.

Definition at line 57 of file HiBasicGenTest.cc.

References edm::EventSetup::getData().

{
  iSetup.getData(pdt);
  return;
}
void HiBasicGenTest::endJob ( void  ) [virtual]

Reimplemented from edm::EDAnalyzer.

Definition at line 52 of file HiBasicGenTest.cc.

                           {
  // normalization of histograms can be done here (or in post-processor)
  return;
}
void HiBasicGenTest::endRun ( const edm::Run iRun,
const edm::EventSetup iSetup 
) [virtual]

Reimplemented from edm::EDAnalyzer.

Definition at line 63 of file HiBasicGenTest.cc.

{return;}

Member Data Documentation

Definition at line 35 of file HiBasicGenTest.h.

Definition at line 31 of file HiBasicGenTest.h.

Definition at line 33 of file HiBasicGenTest.h.

Definition at line 36 of file HiBasicGenTest.h.

Definition at line 34 of file HiBasicGenTest.h.

Definition at line 39 of file HiBasicGenTest.h.

Definition at line 37 of file HiBasicGenTest.h.