CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HiEvtPlaneFlatCalib.cc
Go to the documentation of this file.
1 //
2 // Original Author: Stephen Sanders
3 // Created: Sat Jun 26 16:04:04 EDT 2010
4 //
5 //
6 
7 
8 // system include files
9 #include <memory>
10 
11 // user include files
14 
17 
19 
20 #include "Math/Vector3D.h"
21 
25 
28 
34 
41 
43 #include "TFile.h"
44 #include "TH1.h"
45 #include "TH2D.h"
46 #include "TH2F.h"
47 #include "TTree.h"
48 #include "TH1I.h"
49 #include "TF1.h"
50 #include "TList.h"
51 #include "TString.h"
52 #include <time.h>
53 #include <cstdlib>
54 #include <vector>
55 
57 
58 using namespace std;
59 using namespace hi;
60 
61 //
62 // class declaration
63 //
64 
66  public:
67  explicit HiEvtPlaneFlatCalib(const edm::ParameterSet&);
69 
70  private:
71  virtual void beginJob() override ;
72  virtual void analyze(const edm::Event&, const edm::EventSetup&) override;
73  virtual void endJob() override ;
74 
75  // ----------member data ---------------------------
80  int vs_sell; // vertex collection size
81  float vzr_sell;
82  float vzErr_sell;
83 
84  static const int NumCentBins=9;
85  double wcent[10];
86 
87  TH1D * hcent;
88  TH1D * hvtx;
89  TH1D * flatXhist[NumEPNames];
90  TH1D * flatYhist[NumEPNames];
91  TH1D * flatCnthist[NumEPNames];
92 
93  TH1D * flatXDBhist[NumEPNames];
94  TH1D * flatYDBhist[NumEPNames];
95  TH1D * hPsi[NumEPNames];
96  TH1D * hPsiFlat[NumEPNames];
97  TH1D * hPsiFlatCent[NumEPNames][NumCentBins];
98  TH1D * hPsiFlatSub1[NumEPNames];
99  TH1D * hPsiFlatSub2[NumEPNames];
100  Double_t epang[NumEPNames];
103  int nRP;
105 
106 };
107 
108 //
109 // constants, enums and typedefs
110 //
111 
112 //
113 // static data member definitions
114 //
115 
116 //
117 // constructors and destructor
118 //
120 {
121  genFlatPsi_ = iConfig.getUntrackedParameter<bool>("genFlatPsi_",true);
122  ctag_ = consumes<int>(iConfig.getParameter<edm::InputTag>("centralityBinLabel"));
123  vtxCollection_ = consumes<reco::VertexCollection>(iConfig.getParameter<edm::InputTag>("vtxCollection_"));
124 
125  // NumCentBins=9;
126  wcent[0] = 0;
127  wcent[1] = 5;
128  wcent[2] = 10;
129  wcent[3] = 20;
130  wcent[4] = 30;
131  wcent[5] = 40;
132  wcent[6] = 50;
133  wcent[7] = 60;
134  wcent[8] = 70;
135  wcent[9] = 100;
136 
137  //now do what ever other initialization is needed
138 
139  hcent = fs->make<TH1D>("cent","cent",41,0,40);
140  hvtx = fs->make<TH1D>("vtx","vtx",1000,-50,50);
141  //setting before 8:35 CDT on 11Jan2011
142  Int_t FlatOrder = 21;
143  for(int i = 0; i<NumEPNames; i++) {
144  TFileDirectory subdir = fs->mkdir(Form("%s",EPNames[i].data()));
145  flat[i] = new HiEvtPlaneFlatten();
146  flat[i]->Init(FlatOrder,11,4,EPNames[i],EPOrder[i]);
147  int nbins = flat[i]->GetHBins();
148  flatXhist[i] = subdir.make<TH1D>(Form("x_%s",EPNames[i].data()),Form("x_%s",EPNames[i].data()),nbins,-0.5,nbins-0.5);
149  flatYhist[i] = subdir.make<TH1D>(Form("y_%s",EPNames[i].data()),Form("y_%s",EPNames[i].data()),nbins,-0.5,nbins-0.5);
150  flatCnthist[i] = subdir.make<TH1D>(Form("cnt_%s",EPNames[i].data()),Form("cnt_%s",EPNames[i].data()),nbins,-0.5,nbins-0.5);
151  Double_t psirange = 4;
152  if(EPOrder[i]==2 ) psirange = 2;
153  if(EPOrder[i]==3 ) psirange = 1.5;
154  if(EPOrder[i]==4 ) psirange = 1;
155  if(EPOrder[i]==5) psirange = 0.8;
156  if(EPOrder[i]==6) psirange = 0.6;
157  hPsi[i] = subdir.make<TH1D>("psi","psi",800,-psirange,psirange);
158  hPsi[i]->SetXTitle("#Psi");
159  hPsi[i]->SetYTitle(Form("Counts (cent<80%c)",'%'));
160  hPsiFlat[i] = subdir.make<TH1D>("psiFlat","psiFlat",800,-psirange,psirange);
161  hPsiFlat[i]->SetXTitle("#Psi");
162  hPsiFlat[i]->SetYTitle(Form("Counts (cent<80%c)",'%'));
163  for(int j = 0; j<NumCentBins; j++) {
164  TString hname = Form("psiFlat_%d_%d",(int) wcent[j],(int) wcent[j+1]);
165  hPsiFlatCent[i][j] = subdir.make<TH1D>(hname.Data(),hname.Data(),800,-psirange,psirange);
166  hPsiFlatCent[i][j]->SetXTitle("#Psi");
167  hPsiFlatCent[i][j]->SetYTitle(Form("Counts (%d<cent#leq%d%c)",(int) wcent[j],(int) wcent[j+1],'%'));
168  }
169 
170  }
171 
172 }
173 
174 
176 {
177 
178  // do anything here that needs to be done at desctruction time
179  // (e.g. close files, deallocate resources etc.)
180 
181 }
182 
183 
184 //
185 // member functions
186 //
187 
188 // ------------ method called to produce the data ------------
189 void
191 {
192  using namespace edm;
193  using namespace reco;
194  //
195  //Get Centrality
196  //
197  iEvent.getByToken(ctag_,cbin_);
198 
199  int bin = *cbin_;
200  double centval = 2.5*bin+1.25;
201  hcent->Fill(bin);
202  //
203  //Get Vertex
204  //
205  edm::Handle<reco::VertexCollection> vertexCollection3;
206  iEvent.getByToken(vtxCollection_,vertexCollection3);
207  const reco::VertexCollection * vertices3 = vertexCollection3.product();
208  vs_sell = vertices3->size();
209  if(vs_sell>0) {
210  vzr_sell = vertices3->begin()->z();
211  vzErr_sell = vertices3->begin()->zError();
212  } else
213  vzr_sell = -999.9;
214  //
215  //Get Flattening Parameters
216  //
217  if(genFlatPsi_) {
218  edm::ESHandle<RPFlatParams> flatparmsDB_;
219  iSetup.get<HeavyIonRPRcd>().get(flatparmsDB_);
220  int flatTableSize = flatparmsDB_->m_table.size();
221  for(int i = 0; i<flatTableSize; i++) {
222  const RPFlatParams::EP* thisBin = &(flatparmsDB_->m_table[i]);
223  for(int j = 0; j<NumEPNames; j++) {
224  int indx = thisBin->RPNameIndx[j];
225  if(indx>=0) {
226  flat[indx]->SetXDB(i, thisBin->x[j]);
227  flat[indx]->SetYDB(i, thisBin->y[j]);
228  }
229  }
230  }
231  }
232 
233  //
234  //Get Event Planes
235  //
236 
238  iEvent.getByLabel("hiEvtPlane","recoLevel",evtPlanes);
239 
240  if(!evtPlanes.isValid()){
241  //cout << "Error! Can't get hiEvtPlane product!" << endl;
242  return ;
243  }
244 
245  for (EvtPlaneCollection::const_iterator rp = evtPlanes->begin();rp !=evtPlanes->end(); rp++) {
246  if(rp->angle() > -5) {
247  string baseName = rp->label();
248  for(int i = 0; i< NumEPNames; i++) {
249  if(EPNames[i].compare(baseName)==0) {
250  double psiFlat = flat[i]->GetFlatPsi(rp->angle(),vzr_sell,bin);
251  epang[i]=psiFlat;
252  if(EPNames[i].compare(rp->label())==0) {
253  flat[i]->Fill(rp->angle(),vzr_sell,bin);
254  if(i==0) hvtx->Fill(vzr_sell);
255 
256  if(centval<=80) hPsi[i]->Fill(rp->angle());
257  if(genFlatPsi_) {
258  if(centval<=80) hPsiFlat[i]->Fill(psiFlat);
259  for(int j = 0; j<NumCentBins; j++) {
260  if(centval>wcent[j]&&centval<=wcent[j+1]) hPsiFlatCent[i][j]->Fill(psiFlat);
261  }
262  }
263  }
264  }
265  }
266  }
267  }
268 
269 }
270 
271 // ------------ method called once each job just before starting event loop ------------
272 void
274 {
275 }
276 
277 // ------------ method called once each job just after ending the event loop ------------
278 void
280  for(int i = 0; i<NumEPNames; i++) {
281  for(int j = 0; j<flat[i]->GetHBins();j++) {
282  flatXhist[i]->SetBinContent(j+1,flat[i]->GetX(j));
283  flatYhist[i]->SetBinContent(j+1,flat[i]->GetY(j));
284  flatCnthist[i]->SetBinContent(j+1,flat[i]->GetCnt(j));
285  }
286  }
287 }
288 
289 //define this as a plug-in
virtual void beginJob() override
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
const int EPOrder[]
int i
Definition: DBlmapReader.cc:9
virtual void endJob() override
edm::EDGetTokenT< int > ctag_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:449
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
const std::string EPNames[]
void beginJob()
Definition: Breakpoints.cc:15
return((rh^lh)&mask)
int iEvent
Definition: GenABIO.cc:230
virtual void analyze(const edm::Event &, const edm::EventSetup &) override
int j
Definition: DBlmapReader.cc:9
T * make(const Args &...args) const
make new ROOT object
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:405
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
const T & get() const
Definition: EventSetup.h:55
edm::Handle< int > cbin_
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
int RPNameIndx[50]
Definition: RPFlatParams.h:16
static const int NumEPNames
edm::EDGetTokenT< reco::VertexCollection > vtxCollection_
HiEvtPlaneFlatCalib(const edm::ParameterSet &)
edm::Service< TFileService > fs