Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nptool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
np
nptool
Commits
ea9b9639
Commit
ea9b9639
authored
11 years ago
by
adrien-matta
Browse files
Options
Downloads
Patches
Plain Diff
* Adding TTiaraBarrelSpectra
parent
75cfa76f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NPLib/Tiara/TTiaraBarrelSpectra.cxx
+226
-0
226 additions, 0 deletions
NPLib/Tiara/TTiaraBarrelSpectra.cxx
NPLib/Tiara/TTiaraBarrelSpectra.h
+85
-0
85 additions, 0 deletions
NPLib/Tiara/TTiaraBarrelSpectra.h
with
311 additions
and
0 deletions
NPLib/Tiara/TTiaraBarrelSpectra.cxx
0 → 100644
+
226
−
0
View file @
ea9b9639
/*****************************************************************************
* 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
);
}
}
This diff is collapsed.
Click to expand it.
NPLib/Tiara/TTiaraBarrelSpectra.h
0 → 100644
+
85
−
0
View file @
ea9b9639
#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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment