Skip to content
Snippets Groups Projects
Commit ea9b9639 authored by adrien-matta's avatar adrien-matta
Browse files

* Adding TTiaraBarrelSpectra

parent 75cfa76f
No related branches found
No related tags found
No related merge requests found
/*****************************************************************************
* Copyright (C) 2009-2013 this file is part of the NPTool Project *
* *
* For the licensing terms see $NPTOOL/Licence/NPTool_Licence *
* For the list of contributors see $NPTOOL/Licence/Contributors *
*****************************************************************************/
/*****************************************************************************
* Original Author: A. MATTA contact address: a.matta@surrey.ac.uk *
* *
* Creation Date : dec 2013 *
* Last update : *
*---------------------------------------------------------------------------*
* Decription: *
* This class holds all the online spectra needed for TiaraBarrel *
* *
*---------------------------------------------------------------------------*
* Comment: *
* *
* *
* *
*****************************************************************************/
// NPL
#include "TTiaraBarrelSpectra.h"
#include "NPOptionManager.h"
#include "NPGlobalSystemOfUnits.h"
#include "NPPhysicalConstants.h"
#ifdef NP_SYSTEM_OF_UNITS_H
using namespace NPUNITS;
#endif
// ROOT
#include "TString.h"
#include "TDirectory.h"
#include "TFile.h"
////////////////////////////////////////////////////////////////////////////////
TTiaraBarrelSpectra::TTiaraBarrelSpectra(){
fNumberOfDetector= 0;
fInnerBarrelStrip=4;
fOuterBarrelStrip=4;
}
////////////////////////////////////////////////////////////////////////////////
TTiaraBarrelSpectra::TTiaraBarrelSpectra(unsigned int NumberOfDetector){
if(NPOptionManager::getInstance()->GetVerboseLevel()>0)
cout << "************************************************" << endl
<< "TTiaraBarrelSpectra : Initalising control spectra for "
<< NumberOfDetector << " Detectors" << endl
<< "************************************************" << endl ;
fNumberOfDetector= NumberOfDetector;
fInnerBarrelStrip=4;
fOuterBarrelStrip=4;
InitRawSpectra();
InitPreTreatedSpectra();
InitPhysicsSpectra();
}
////////////////////////////////////////////////////////////////////////////////
TTiaraBarrelSpectra::~TTiaraBarrelSpectra(){
}
////////////////////////////////////////////////////////////////////////////////
void TTiaraBarrelSpectra::InitRawSpectra(){
TString name;
TString BaseFamily = "TIARA/BARREL/RAW/";
// Inner Barrel
// Hit Up Stream
name = "INNER_BARREL_US_HIT_RAW";
AddHisto1D(name, name, fNumberOfDetector*fInnerBarrelStrip, 1, fNumberOfDetector*fInnerBarrelStrip+1, BaseFamily+"HIT");
//Hit Down Stream
name = "INNER_BARREL_DS_HIT_RAW";
AddHisto1D(name, name, fNumberOfDetector*fInnerBarrelStrip, 1, fNumberOfDetector*fInnerBarrelStrip+1, BaseFamily+"HIT");
// Hit Back
name = "INNER_BARREL_BACK_HIT_RAW";
AddHisto1D(name, name, fNumberOfDetector, 1, fNumberOfDetector+1, BaseFamily+"HIT");
// Outer Barrel
//Hit Strip
name = "OUTER_BARREL_STRIP_HIT_RAW";
AddHisto1D(name, name, fNumberOfDetector*fOuterBarrelStrip, 1, fNumberOfDetector*fOuterBarrelStrip+1, BaseFamily+"HIT");
// Hit Up Stream
name = "OUTER_BARREL_BACK_HIT_RAW";
AddHisto1D(name, name, fNumberOfDetector, 1, fNumberOfDetector+1, BaseFamily+"HIT");
}
////////////////////////////////////////////////////////////////////////////////
void TTiaraBarrelSpectra::InitPreTreatedSpectra(){
}
////////////////////////////////////////////////////////////////////////////////
void TTiaraBarrelSpectra::InitPhysicsSpectra(){
}
////////////////////////////////////////////////////////////////////////////////
void TTiaraBarrelSpectra::FillRawSpectra(TTiaraBarrelData* RawData){
TString name;
TString family;
TString BaseFamily = "TIARA/BARREL/RAW/";
// INNER_BARREL_US_HIT_RAW
for (unsigned int i = 0; i < RawData->GetFrontUpstreamEMult(); i++) {
name = "INNER_BARREL_US_HIT_RAW";
family = BaseFamily+"HIT";
GetHisto(family,name)
->Fill(RawData->GetFrontUpstreamEDetectorNbr(i)*fInnerBarrelStrip
+RawData->GetFrontUpstreamEStripNbr(i));
}
// INNER_BARREL_DS_HIT_RAW
for (unsigned int i = 0; i < RawData->GetFrontDownstreamEMult(); i++) {
name = "INNER_BARREL_DS_HIT_RAW";
family = BaseFamily+"HIT";
GetHisto(family,name)
->Fill(RawData->GetFrontDownstreamEDetectorNbr(i)*fInnerBarrelStrip
+RawData->GetFrontDownstreamEStripNbr(i));
}
// INNER_BARREL_BACK_HIT_RAW
for (unsigned int i = 0; i < RawData->GetBackEMult(); i++) {
name = "INNER_BARREL_BACK_HIT_RAW";
family = BaseFamily+"HIT";
GetHisto(family,name)
->Fill(RawData->GetBackEDetectorNbr(i)*fInnerBarrelStrip);
}
// OUTER_BARREL_STRIP_HIT_RAW
for (unsigned int i = 0; i < RawData->GetOuterEMult(); i++) {
name = "OUTER_BARREL_STRIP_HIT_RAW";
family = BaseFamily+"HIT";
GetHisto(family,name)
->Fill(RawData->GetOuterEDetectorNbr(i)*fInnerBarrelStrip
+RawData->GetOuterEStripNbr(i));
}
}
////////////////////////////////////////////////////////////////////////////////
void TTiaraBarrelSpectra::FillPreTreatedSpectra(TTiaraBarrelData* PreTreatedData){
}
////////////////////////////////////////////////////////////////////////////////
void TTiaraBarrelSpectra::FillPhysicsSpectra(TTiaraBarrelPhysics* Physics){
}
////////////////////////////////////////////////////////////////////////////////
TH1* TTiaraBarrelSpectra::AddHisto1D(TString name, TString title, Int_t nbinsx, Double_t xlow, Double_t xup, TString family){
// create histo
TH1 *hist = new TH1D(name, title, nbinsx, xlow, xup);
vector<TString> index ;
index.push_back(family);
index.push_back(name);
// fill map
fMapHisto[index]=hist;
return hist;
}
////////////////////////////////////////////////////////////////////////////////
TH1* TTiaraBarrelSpectra::AddHisto2D(TString name, TString title, Int_t nbinsx, Double_t xlow, Double_t xup, Int_t nbinsy, Double_t ylow, Double_t yup, TString family){
// create histo
TH1 *hist = new TH2D(name, title, nbinsx, xlow, xup, nbinsy, ylow, yup);
vector<TString> index ;
index.push_back(family);
index.push_back(name);
// fill map
fMapHisto[index]=hist;
return hist;
}
////////////////////////////////////////////////////////////////////////////////
TH1* TTiaraBarrelSpectra::GetHisto(TString family, TString name){
vector<TString> index ;
index.push_back(family);
index.push_back(name);
// fill map
return fMapHisto.at(index);
}
////////////////////////////////////////////////////////////////////////////////
void TTiaraBarrelSpectra::WriteHisto(TString filename){
TFile* f=NULL;
if(filename!="VOID"){
f = new TFile(filename,"RECREATE");
}
map< vector<TString>, TH1* >::iterator it;
for (it=fMapHisto.begin(); it!=fMapHisto.end(); ++it){
it->second->Write();
}
if(filename!="VOID"){
f->Close();
delete f;
}
}
///////////////////////////////////////////////////////////////////////////////
void TTiaraBarrelSpectra::CheckSpectra(){
map< vector<TString>, TH1* >::iterator it;
Color_t ok_color = kTeal+9;
Color_t warning_color = kOrange+8; warning_color *= 1;
Color_t bad_color = kRed; bad_color *= 1;
for (it=fMapHisto.begin(); it!=fMapHisto.end(); ++it){
it->second->SetLineColor(ok_color);
it->second->SetFillStyle(1001);
it->second->SetFillColor(ok_color);
}
}
#ifndef TTIARABARRELSPECTRA_H
#define TTIARABARRELSPECTRA_H
/*****************************************************************************
* Copyright (C) 2009-2013 this file is part of the NPTool Project *
* *
* For the licensing terms see $NPTOOL/Licence/NPTool_Licence *
* For the list of contributors see $NPTOOL/Licence/Contributors *
*****************************************************************************/
/*****************************************************************************
* Original Author: N. de Sereville contact address: deserevi@ipno.in2p3.fr *
* *
* Creation Date : march 2011 *
* Last update : *
*---------------------------------------------------------------------------*
* Decription: *
* This class holds all the online spectra needed for TiaraBarrel *
* *
*---------------------------------------------------------------------------*
* Comment: *
* + first version (not complete yet) *
* *
* *
*****************************************************************************/
// C++ STL headers
#include <map>
// ROOT headers
#include "TObject.h"
#include <TH1.h>
#include <TH2.h>
#include <TString.h>
// NPLib headers
#include "TTiaraBarrelData.h"
#include "TTiaraBarrelPhysics.h"
using namespace std;
// ForwardDeclaration
class TTiaraBarrelPhysics ;
class TTiaraBarrelSpectra {
public:
// constructor and destructor
TTiaraBarrelSpectra();
TTiaraBarrelSpectra(unsigned int NumberOfDetector);
~TTiaraBarrelSpectra();
private:
// Instantiate and register histo to maps
TH1* AddHisto1D(TString name, TString title, Int_t nbinsx, Double_t xlow, Double_t xup, TString family);
TH1* AddHisto2D(TString name, TString title, Int_t nbinsx, Double_t xlow, Double_t xup,
Int_t nbinsy, Double_t ylow, Double_t yup,TString family);
// Initialization methods
void InitRawSpectra();
void InitPreTreatedSpectra();
void InitPhysicsSpectra();
public:
// Filling methods
void FillRawSpectra(TTiaraBarrelData*);
void FillPreTreatedSpectra(TTiaraBarrelData*);
void FillPhysicsSpectra(TTiaraBarrelPhysics*);
// Check the Spectra
void CheckSpectra();
public:
// get map histo which will be used for GSpectra in GUser
map< vector<TString>, TH1* > GetMapHisto() const {return fMapHisto;}
TH1* GetHisto(TString family,TString name);
void WriteHisto(TString filename="VOID");
private: // Information on TIARA/BARREL
unsigned int fNumberOfDetector;
unsigned int fInnerBarrelStrip;
unsigned int fOuterBarrelStrip;
private:
// map holding histo pointers and their family names
map< vector<TString>, TH1* > fMapHisto;
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment