2023-04-03 16:03:48 -04:00
# include <TFile.h>
# include <TTree.h>
# include <TCanvas.h>
# include <TROOT.h>
# include <TObjArray.h>
# include <TStyle.h>
# include <TH2F.h>
# include <TH1F.h>
# include <TF1.h>
# include <TArc.h>
# include <TMath.h>
# include <TLine.h>
# include <TSpectrum.h>
# include <TGraph.h>
# include <TLegend.h>
# include <TLatex.h>
# include <TMacro.h>
# include <TObjArray.h>
# include <fstream>
# include <TCutG.h>
2024-02-13 18:24:56 -05:00
# include "../Armory/AnalysisLib.h"
# include "../Armory/ClassDetGeo.h"
# include "../Armory/ClassReactionConfig.h"
# include "../Cleopatra/ClassIsotope.h"
2024-02-20 18:15:16 -05:00
# include "../Cleopatra/ClassTransfer.h"
2023-04-03 16:03:48 -04:00
double * FindRange ( TString branch , TString gate , TTree * tree , double output [ 2 ] ) ;
double ExtractNumber ( int index , TMacro * macro ) ;
TString ExtractString ( int index , TMacro * macro ) ;
vector < TString > StringToVector ( TString str ) ;
vector < int > intConvertor ( vector < TString > arr ) ;
vector < double > doubleConvertor ( vector < TString > arr ) ;
enum plotID { pEZ , /// 0
pRecoilXY , /// 1
pRecoilXY1 , /// 2
pRecoilXY2 , /// 3
pRecoilRZ , /// 4
pRecoilRTR , /// 5
pTDiffZ , /// 6
pThetaCM , /// 7
pThetaCM_Z , /// 8
pExCal , /// 9
pRecoilRThetaCM , /// 10
pArrayXY , /// 11
pInfo , /// 12
pHitID , /// 13
pElum1XY , /// 14
pEElum1R , /// 15
pElum1RThetaCM , /// 16
pEmpty } ; /// 17
plotID StringToPlotID ( TString str ) ;
2024-02-20 18:15:16 -05:00
//*=====================================================
void Check_Simulation ( TString filename = " transfer.root " ,
2023-04-03 16:07:53 -04:00
TString configFile = " ../working/Check_Simulation_Config.txt " ,
2023-04-03 16:03:48 -04:00
Int_t padSize = 500 ,
bool outputCanvas = false ) {
printf ( " =========================== Check_Simulation.C \n " ) ;
TMacro * config = new TMacro ( configFile ) ;
int numLine = config - > GetListOfLines ( ) - > GetSize ( ) ;
int startLineNum = 0 ;
for ( int i = 0 ; i < numLine ; i + + ) {
2024-02-20 18:15:16 -05:00
TString haha = config - > GetListOfLines ( ) - > At ( i ) - > GetName ( ) ;
haha . Remove ( 4 ) ;
if ( haha ! = " //// " ) {
startLineNum = i ;
break ;
}
2023-04-03 16:03:48 -04:00
}
TString gate = ExtractString ( startLineNum + 1 , config ) ;
double elumRange = ExtractNumber ( startLineNum + 2 , config ) ;
2024-04-03 17:15:24 -04:00
std : : vector < double > thetaCMRange = doubleConvertor ( StringToVector ( ExtractString ( startLineNum + 3 , config ) ) ) ;
2023-04-03 16:03:48 -04:00
bool shownKELines = ( ExtractString ( startLineNum + 4 , config ) . Remove ( 4 ) = = " true " ? true : false ) ;
bool isOverRideEx = ( ExtractString ( startLineNum + 5 , config ) . Remove ( 4 ) = = " true " ? true : false ) ;
2024-04-03 17:15:24 -04:00
std : : vector < double > oExRange = doubleConvertor ( StringToVector ( ExtractString ( startLineNum + 6 , config ) ) ) ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
printf ( " %s \n " , gate . Data ( ) ) ;
2023-04-03 16:03:48 -04:00
///==== config Canvas
2024-04-03 17:15:24 -04:00
std : : vector < TString > plotConfig = StringToVector ( ExtractString ( startLineNum , config ) ) ;
std : : vector < plotID > canvas ;
2023-04-03 16:03:48 -04:00
int colCount = 0 ;
int colCount_new = 0 ;
int rowCount = 1 ;
for ( int i = 0 ; i < ( int ) plotConfig . size ( ) ; i + + ) {
2024-02-20 18:15:16 -05:00
if ( plotConfig [ i ] = = " break " ) {
rowCount + + ;
if ( colCount_new > colCount ) colCount = colCount_new ;
colCount_new = 0 ;
continue ;
}
canvas . push_back ( StringToPlotID ( plotConfig [ i ] ) ) ;
colCount_new + + ;
2023-04-03 16:03:48 -04:00
}
if ( colCount = = 0 ) colCount = colCount_new ;
2024-02-20 18:15:16 -05:00
//printf("plot row: %d, col: %d \n", rowCount, colCount);
2023-04-03 16:03:48 -04:00
2024-04-03 17:15:24 -04:00
std : : vector < int > Div = { colCount , rowCount } ;
2024-02-20 18:15:16 -05:00
2023-04-03 16:03:48 -04:00
TFile * file = new TFile ( filename , " read " ) ;
TTree * tree = ( TTree * ) file - > Get ( " tree " ) ;
2024-02-20 19:46:29 -05:00
TObjArray * fxList = ( TObjArray * ) file - > FindObjectAny ( " EZCurve " ) ;
TObjArray * txList = ( TObjArray * ) file - > FindObjectAny ( " thetaCM_Z " ) ;
2024-02-20 18:15:16 -05:00
gStyle - > SetOptStat ( " " ) ;
gStyle - > SetStatY ( 0.9 ) ;
gStyle - > SetStatX ( 0.9 ) ;
gStyle - > SetStatW ( 0.4 ) ;
gStyle - > SetStatH ( 0.2 ) ;
gStyle - > SetLabelSize ( 0.05 , " XY " ) ;
gStyle - > SetTitleFontSize ( 0.1 ) ;
//*================== detGeoID
TMacro * detGeoIDTxt = ( TMacro * ) file - > FindObjectAny ( " detGeoID " ) ;
int detGeoID = atoi ( detGeoIDTxt - > GetListOfLines ( ) - > At ( 0 ) - > GetName ( ) ) ;
//*================== reactionConfig
2023-04-03 16:03:48 -04:00
TMacro * reactionConfigTxt = ( TMacro * ) file - > FindObjectAny ( " reactionConfig " ) ;
2024-02-20 18:15:16 -05:00
TString Reaction = reactionConfigTxt - > GetName ( ) ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
ReactionConfig reactionConfig ( reactionConfigTxt ) ;
Recoil recoil = reactionConfig . recoil [ detGeoID ] ;
2023-04-03 16:03:48 -04:00
int nEvent = reactionConfig . numEvents ;
2024-02-20 18:15:16 -05:00
printf ( " number of events generated : %d \n " , nEvent ) ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
reactionConfig . Print ( detGeoID , false ) ;
//*================================== detetcor Geometry
2023-04-03 16:03:48 -04:00
printf ( " ================================= \n " ) ;
printf ( " loading detector Geometry. \n " ) ;
TMacro * detGeoTxt = ( TMacro * ) file - > FindObjectAny ( " detGeo " ) ;
2024-02-20 18:15:16 -05:00
DetGeo detGeo ( detGeoTxt ) ;
Array array = detGeo . array [ detGeoID ] ;
2023-04-03 16:03:48 -04:00
2024-04-03 17:15:24 -04:00
detGeo . Print ( ) ;
array . Print ( ) ;
2023-04-03 16:03:48 -04:00
printf ( " ================================= \n " ) ;
2024-02-20 18:15:16 -05:00
int numDet = array . nDet * array . mDet ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
double zRange [ 3 ] = { 400 , - 1000 , 1000 } ; /// zRange[0] = nBin
2023-04-10 15:46:24 -04:00
zRange [ 1 ] = array . zMin - 50 ;
zRange [ 2 ] = array . zMax + 50 ;
2023-04-03 16:03:48 -04:00
printf ( " zRange : %f - %f \n " , zRange [ 1 ] , zRange [ 2 ] ) ;
printf ( " ================================= \n " ) ;
2024-02-20 18:15:16 -05:00
//*========================================= Ex List;
double ExRange [ 2 ] ;
int numEx = 0 ;
ExcitedEnergies exList ;
// if DEBA_ExList exist, use this, else use the recoil ExList
TMacro * exListTxt = ( TMacro * ) file - > FindObjectAny ( " DWBA_ExList " ) ;
ExRange [ 0 ] = 9999999 ;
ExRange [ 1 ] = - 9999999 ;
if ( exListTxt = = nullptr ) {
exList = reactionConfig . exList [ detGeoID ] ;
numEx = exList . ExList . size ( ) ;
for ( size_t i = 0 ; i < numEx ; i + + ) {
double ex = exList . ExList [ i ] . Ex ;
if ( ex < ExRange [ 0 ] ) ExRange [ 0 ] = ex ;
if ( ex > ExRange [ 1 ] ) ExRange [ 1 ] = ex ;
}
} else {
2024-04-03 17:15:24 -04:00
2024-02-21 17:17:35 -05:00
numEx = exListTxt - > GetListOfLines ( ) - > GetSize ( ) - 1 ;
2024-04-03 17:15:24 -04:00
for ( int i = 1 ; i < = numEx ; i + + ) {
std : : vector < std : : string > tempStr = AnalysisLib : : SplitStr ( exListTxt - > GetListOfLines ( ) - > At ( i ) - > GetName ( ) , " " ) ;
double ex = atof ( tempStr [ 0 ] . c_str ( ) ) ;
2024-02-20 18:15:16 -05:00
if ( ex < ExRange [ 0 ] ) ExRange [ 0 ] = ex ;
if ( ex > ExRange [ 1 ] ) ExRange [ 1 ] = ex ;
2024-04-03 17:15:24 -04:00
exList . Add ( ex , atof ( tempStr [ 1 ] . c_str ( ) ) , 1.0 , 0.00 ) ;
2024-02-20 18:15:16 -05:00
}
}
2024-02-21 17:17:35 -05:00
exList . Print ( ) ;
2024-02-20 18:15:16 -05:00
double dExRange = ExRange [ 1 ] - ExRange [ 0 ] ;
2024-04-03 17:15:24 -04:00
ExRange [ 0 ] = ExRange [ 0 ] - 0.3 - dExRange * 0.1 ;
ExRange [ 1 ] = ExRange [ 1 ] + 0.3 + dExRange * 0.1 ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
printf ( " Number of Ex states = %d \n " , numEx ) ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
//*=================================== calculate Ranges
//eRange by zRange and exList
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
TransferReaction transfer ;
2024-04-03 17:15:24 -04:00
transfer . SetReactionSimple ( reactionConfig . beamA ,
reactionConfig . beamZ ,
reactionConfig . targetA ,
reactionConfig . targetZ ,
recoil . lightA ,
recoil . lightZ ,
reactionConfig . beamEnergy ) ;
2024-02-20 18:15:16 -05:00
double QQ = transfer . GetCMTotalEnergy ( ) ;
double gamm = transfer . GetReactionGamma ( ) ;
double mass = transfer . GetMass_b ( ) ;
double slope = transfer . GetEZSlope ( detGeo . Bfield ) ;
double eRange [ 2 ] = { 0 , 10 } ;
eRange [ 1 ] = zRange [ 2 ] * slope ;
// printf("intercept of 0 MeV : %f MeV \n", intercept);
printf ( " eRange 0 MeV : %f MeV \n " , eRange [ 1 ] ) ;
double dERange = eRange [ 1 ] - eRange [ 0 ] ;
eRange [ 0 ] = eRange [ 0 ] - dERange * 0.1 ;
eRange [ 1 ] = eRange [ 1 ] + dERange * 0.1 ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
//thetaCMRange
double momentum = transfer . GetMomentumbCM ( ) ;
double beta = transfer . GetReactionBeta ( ) ;
double alpha = slope / beta ;
double thetaMax = acos ( ( beta * QQ - alpha / gamm * zRange [ 2 ] ) / momentum ) * TMath : : RadToDeg ( ) ;
thetaCMRange [ 1 ] = ( int ) TMath : : Ceil ( thetaMax / 10. ) * 10 ;
///printf(" momentum : %f \n", momentum);
///printf(" thetaCM Max : %f \n", thetaMax);
///printf(" thetaCM Range : %d \n", thetaCMRange[1]);
double recoilERange [ 2 ] = { 0 , 100 } ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
//===================================================
printf ( " ============================== Gate \n " ) ;
printf ( " gate : %s \n " , gate . Data ( ) ) ;
printf ( " ==================================== \n " ) ;
Int_t size [ 2 ] = { padSize , padSize } ; ///x,y, single Canvas size
TCanvas * cCheck = new TCanvas ( " cCheck " , " Check For Simulation " , 0 , 0 , size [ 0 ] * Div [ 0 ] , size [ 1 ] * Div [ 1 ] ) ;
if ( cCheck - > GetShowEditor ( ) ) cCheck - > ToggleEditor ( ) ;
if ( cCheck - > GetShowToolBar ( ) ) cCheck - > ToggleToolBar ( ) ;
cCheck - > Divide ( Div [ 0 ] , Div [ 1 ] ) ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
for ( int i = 1 ; i < = Div [ 0 ] * Div [ 1 ] ; i + + ) {
cCheck - > cd ( i ) ;
cCheck - > cd ( i ) - > SetGrid ( ) ;
if ( canvas [ i - 1 ] = = pThetaCM ) {
cCheck - > cd ( i ) - > SetGrid ( 0 , 0 ) ;
cCheck - > cd ( i ) - > SetLogy ( ) ;
}
if ( canvas [ i - 1 ] = = pHitID ) {
cCheck - > cd ( i ) - > SetLogy ( ) ;
}
plotID pID = canvas [ i - 1 ] ;
///########################################
if ( pID = = pEZ ) {
TH2F * hez = new TH2F ( " hez " , Form ( " e-z [gated] @ %5.0f mm; z [mm]; e [MeV] " , array . firstPos ) , zRange [ 0 ] , zRange [ 1 ] , zRange [ 2 ] ,
400 , eRange [ 0 ] , eRange [ 1 ] ) ;
tree - > Draw ( " e:z>>hez " , gate , " colz " ) ;
if ( shownKELines ) {
for ( int i = 0 ; i < numEx ; i + + ) {
fxList - > At ( i ) - > Draw ( " same " ) ;
}
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
}
if ( pID = = pRecoilXY ) {
2024-04-03 17:15:24 -04:00
TH2F * hRecoilXY = new TH2F ( " hRecoilXY " , Form ( " RecoilXY [gated] @ %4.0f mm; X [mm]; Y [mm] " , detGeo . aux [ detGeoID ] . detPos ) ,
400 , - detGeo . aux [ detGeoID ] . outerRadius , detGeo . aux [ detGeoID ] . outerRadius ,
400 , - detGeo . aux [ detGeoID ] . outerRadius , detGeo . aux [ detGeoID ] . outerRadius ) ;
2024-02-20 18:15:16 -05:00
tree - > Draw ( " yRecoil:xRecoil>>hRecoilXY " , gate , " colz " ) ;
2024-04-03 17:15:24 -04:00
TArc * detArc1 = new TArc ( 0 , 0 , detGeo . aux [ detGeoID ] . outerRadius ) ;
2024-02-20 18:15:16 -05:00
detArc1 - > SetLineColor ( kBlue - 8 ) ;
detArc1 - > SetFillStyle ( 0 ) ;
detArc1 - > Draw ( " same " ) ;
2024-04-03 17:15:24 -04:00
TArc * detArc2 = new TArc ( 0 , 0 , detGeo . aux [ detGeoID ] . innerRadius ) ;
2024-02-20 18:15:16 -05:00
detArc2 - > SetLineColor ( kBlue - 8 ) ;
detArc2 - > SetFillStyle ( 0 ) ;
detArc2 - > Draw ( " same " ) ;
if ( reactionConfig . beamX ! = 0. | | reactionConfig . beamY ! = 0. ) {
TArc * arc = new TArc ( reactionConfig . beamX , reactionConfig . beamY , 1 ) ;
arc - > SetLineColor ( 2 ) ;
detArc1 - > SetFillStyle ( 0 ) ;
arc - > Draw ( " same " ) ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
}
if ( pID = = pRecoilXY1 ) {
2024-04-03 17:15:24 -04:00
TH2F * hRecoilXY1 = new TH2F ( " hRecoilXY1 " , Form ( " RecoilXY-1 [gated] @ %4.0f mm; X [mm]; Y [mm] " , detGeo . aux [ detGeoID ] . detPos1 ) ,
400 , - detGeo . aux [ detGeoID ] . outerRadius , detGeo . aux [ detGeoID ] . outerRadius ,
400 , - detGeo . aux [ detGeoID ] . outerRadius , detGeo . aux [ detGeoID ] . outerRadius ) ;
2024-02-20 18:15:16 -05:00
tree - > Draw ( " yRecoil1:xRecoil1>>hRecoilXY1 " , gate , " colz " ) ;
}
if ( pID = = pRecoilXY2 ) {
2024-04-03 17:15:24 -04:00
TH2F * hRecoilXY2 = new TH2F ( " hRecoilXY2 " , Form ( " RecoilXY-2 [gated] @ %4.0f mm; X [mm]; Y [mm] " , detGeo . aux [ detGeoID ] . detPos2 ) ,
400 , - detGeo . aux [ detGeoID ] . outerRadius , detGeo . aux [ detGeoID ] . outerRadius ,
400 , - detGeo . aux [ detGeoID ] . outerRadius , detGeo . aux [ detGeoID ] . outerRadius ) ;
2024-02-20 18:15:16 -05:00
tree - > Draw ( " yRecoil2:xRecoil2>>hRecoilXY2 " , gate , " colz " ) ;
}
if ( pID = = pRecoilRZ ) {
2024-04-03 17:15:24 -04:00
TH2F * hRecoilRZ = new TH2F ( " hRecoilRZ " , " RecoilR - Z [gated]; z [mm]; RecoilR [mm] " , zRange [ 0 ] , zRange [ 1 ] , zRange [ 2 ] , 400 , 0 , detGeo . aux [ detGeoID ] . outerRadius ) ;
2024-02-20 18:15:16 -05:00
tree - > Draw ( " rhoRecoil:z>>hRecoilRZ " , gate , " colz " ) ;
}
if ( pID = = pRecoilRTR ) {
FindRange ( " TB " , gate , tree , recoilERange ) ;
2024-04-03 17:15:24 -04:00
TH2F * hRecoilRTR = new TH2F ( " hRecoilRTR " , " RecoilR - recoilE [gated]; recoil Energy [MeV]; RecoilR [mm] " , 500 , recoilERange [ 0 ] , recoilERange [ 1 ] , 500 , 0 , detGeo . aux [ detGeoID ] . outerRadius ) ;
2024-02-20 18:15:16 -05:00
tree - > Draw ( " rhoRecoil:TB>>hRecoilRTR " , gate , " colz " ) ;
}
if ( pID = = pTDiffZ ) {
double tDiffRange [ 2 ] ;
FindRange ( " t-tB " , gate , tree , tDiffRange ) ;
TH2F * hTDiffZ = new TH2F ( " hTDiffZ " , " time(Array) - time(Recoil) vs Z [gated]; z [mm]; time diff [ns] " , zRange [ 0 ] , zRange [ 1 ] , zRange [ 2 ] , 500 , tDiffRange [ 0 ] , tDiffRange [ 1 ] ) ;
tree - > Draw ( " t - tB : z >> hTDiffZ " , gate , " colz " ) ;
}
if ( pID = = pThetaCM ) {
TH1F * hThetaCM [ numEx ] ;
TLegend * legend = new TLegend ( 0.8 , 0.2 , 0.99 , 0.8 ) ;
double maxCount = 0 ;
int startID = 0 ; // set the start ExID
for ( int i = startID ; i < numEx ; i + + ) {
hThetaCM [ i ] = new TH1F ( Form ( " hThetaCM%d " , i ) , Form ( " thetaCM [gated] (ExID=%d); thetaCM [deg]; count " , i ) , 200 , thetaCMRange [ 0 ] , thetaCMRange [ 1 ] ) ;
hThetaCM [ i ] - > SetLineColor ( i + 1 - startID ) ;
hThetaCM [ i ] - > SetFillColor ( i + 1 - startID ) ;
hThetaCM [ i ] - > SetFillStyle ( 3000 + i - startID ) ;
tree - > Draw ( Form ( " thetaCM>>hThetaCM%d " , i ) , gate + Form ( " && ExID==%d " , i ) , " " ) ;
legend - > AddEntry ( hThetaCM [ i ] , Form ( " Ex=%5.1f MeV " , exList . ExList [ i ] . Ex ) ) ;
double max = hThetaCM [ i ] - > GetMaximum ( ) ;
if ( max > maxCount ) maxCount = max ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
for ( int i = startID ; i < numEx ; i + + ) {
hThetaCM [ i ] - > GetYaxis ( ) - > SetRangeUser ( 1 , maxCount * 1.2 ) ;
if ( i = = startID ) {
hThetaCM [ i ] - > Draw ( ) ;
} else {
hThetaCM [ i ] - > Draw ( " same " ) ;
}
}
legend - > Draw ( ) ;
}
if ( pID = = pThetaCM_Z ) {
TH2F * hThetaCM_Z = new TH2F ( " hThetaCM_Z " , " ThetaCM vs Z ; Z [mm]; thetaCM [deg] " , zRange [ 0 ] , zRange [ 1 ] , zRange [ 2 ] , 200 , thetaCMRange [ 0 ] , thetaCMRange [ 1 ] ) ;
tree - > Draw ( " thetaCM:z>>hThetaCM_Z " , gate , " col " ) ;
if ( shownKELines ) {
for ( int i = 0 ; i < numEx ; i + + ) {
txList - > At ( i ) - > Draw ( " same " ) ;
}
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
}
if ( pID = = pExCal ) {
TH1F * hExCal = new TH1F ( " hExCal " , Form ( " calculated Ex [gated]; Ex [MeV]; count / %.2f keV " , ( ExRange [ 1 ] - ExRange [ 0 ] ) / 400. * 1000 ) , 400 , ExRange [ 0 ] , ExRange [ 1 ] ) ;
tree - > Draw ( " ExCal>>hExCal " , gate , " " ) ;
Isotope hRecoil ( recoil . heavyA , recoil . heavyZ ) ;
double Sn = hRecoil . CalSp ( 0 , 1 ) ;
double Sp = hRecoil . CalSp ( 1 , 0 ) ;
double Sa = hRecoil . CalSp2 ( 4 , 2 ) ;
double S2n = hRecoil . CalSp ( 0 , 2 ) ;
printf ( " Heavy recoil: %s \n " , hRecoil . Name . c_str ( ) ) ;
printf ( " Sn : %f MeV/u \n " , Sn ) ;
printf ( " Sp : %f MeV/u \n " , Sp ) ;
printf ( " Sa : %f MeV/u \n " , Sa ) ;
printf ( " S2n : %f MeV/u \n " , S2n ) ;
double yMax = hExCal - > GetMaximum ( ) ;
TLine * lineSn = new TLine ( Sn , 0 , Sn , yMax ) ; lineSn - > SetLineColor ( 2 ) ; lineSn - > Draw ( " " ) ;
TLine * lineSp = new TLine ( Sp , 0 , Sp , yMax ) ; lineSp - > SetLineColor ( 4 ) ; lineSp - > Draw ( " same " ) ;
TLine * lineSa = new TLine ( Sa , 0 , Sa , yMax ) ; lineSa - > SetLineColor ( 6 ) ; lineSa - > Draw ( " same " ) ;
TLine * lineS2n = new TLine ( S2n , 0 , S2n , yMax ) ; lineS2n - > SetLineColor ( 8 ) ; lineS2n - > Draw ( " same " ) ;
TLatex * text = new TLatex ( ) ;
text - > SetTextFont ( 82 ) ;
text - > SetTextSize ( 0.06 ) ;
text - > SetTextColor ( 2 ) ; text - > DrawLatex ( Sn , yMax * 0.9 , " S_{n} " ) ;
text - > SetTextColor ( 4 ) ; text - > DrawLatex ( Sp , yMax * 0.9 , " S_{p} " ) ;
text - > SetTextColor ( 6 ) ; text - > DrawLatex ( Sa , yMax * 0.9 , " S_{a} " ) ;
text - > SetTextColor ( 8 ) ; text - > DrawLatex ( S2n , yMax * 0.9 , " S_{2n} " ) ;
}
if ( pID = = pRecoilRThetaCM ) {
2024-04-03 17:15:24 -04:00
TH2F * hRecoilRThetaCM = new TH2F ( " hRecoilRThetaCM " , " RecoilR - thetaCM [gated]; thetaCM [deg]; RecoilR [mm] " , 400 , 0 , 60 , 400 , 0 , detGeo . aux [ detGeoID ] . outerRadius ) ;
2024-02-20 18:15:16 -05:00
tree - > Draw ( " rhoRecoil:thetaCM>>hRecoilRThetaCM " , gate , " colz " ) ;
}
if ( pID = = pArrayXY ) {
TH2F * hArrayXY = new TH2F ( " hArrayXY " , " Array-XY [gated]; X [mm]; Y [mm] " , 400 , - array . detPerpDist * 1.5 , array . detPerpDist * 1.5 , 400 , - array . detPerpDist * 1.5 , array . detPerpDist * 1.5 ) ;
tree - > Draw ( " yArray:xArray>>hArrayXY " , gate , " colz " ) ;
}
if ( pID = = pInfo ) {
TLatex text ;
text . SetNDC ( ) ;
text . SetTextFont ( 82 ) ;
text . SetTextSize ( 0.06 ) ;
text . SetTextColor ( 2 ) ;
text . DrawLatex ( 0. , 0.9 , Reaction ) ;
text . DrawLatex ( 0. , 0.8 , detGeo . Bfield > 0 ? " out of plan " : " into plan " ) ;
text . SetTextColor ( 1 ) ;
text . DrawLatex ( 0. , 0.7 , " gate: " ) ;
text . SetTextColor ( 2 ) ;
//check gate text length, if > 30, break by "&&"
int ll = gate . Length ( ) ;
if ( ll > 30 ) {
vector < string > strList = AnalysisLib : : SplitStr ( ( string ) gate . Data ( ) , " && " ) ;
for ( int i = 0 ; i < strList . size ( ) ; i + + ) {
text . DrawLatex ( 0. , 0.6 - 0.05 * i , ( TString ) strList [ i ] ) ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
} else {
text . DrawLatex ( 0. , 0.6 , gate ) ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
if ( reactionConfig . beamX ! = 0.0 | | reactionConfig . beamY ! = 0.0 ) {
text . DrawLatex ( 0.0 , 0.1 , Form ( " Bema pos: (%4.1f, %4.1f) mm " , reactionConfig . beamX , reactionConfig . beamY ) ) ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
}
if ( pID = = pElum1XY ) {
2024-04-03 17:15:24 -04:00
TH2F * hElum1XY = new TH2F ( " hElum1XY " , Form ( " Elum-1 XY [gated] @ %.0f mm ; X [mm]; Y [mm] " , detGeo . aux [ detGeoID ] . elumPos1 ) , 400 , - elumRange , elumRange , 400 , - elumRange , elumRange ) ;
2024-02-20 18:15:16 -05:00
tree - > Draw ( " yElum1:xElum1>>hElum1XY " , gate , " colz " ) ;
double count = hElum1XY - > GetEntries ( ) ;
if ( count < 2000. ) {
hElum1XY - > SetMarkerStyle ( 7 ) ;
if ( count < 500. ) hElum1XY - > SetMarkerStyle ( 3 ) ;
hElum1XY - > Draw ( " scat " ) ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
}
if ( pID = = pEElum1R ) {
TH2F * hEElum1Rho = new TH2F ( " hEElum1Rho " , " Elum-1 E-R [gated]; R[mm]; Energy[MeV] " , 400 , 0 , elumRange , 400 , eRange [ 0 ] , eRange [ 1 ] ) ;
tree - > Draw ( " Tb:rhoElum1>>hEElum1Rho " , gate , " colz " ) ;
}
if ( pID = = pElum1RThetaCM ) {
int angBin = 400 ;
TH2F * hElum1RThetaCM = new TH2F ( " hElum1RThetaCM " , " Elum-1 rho vs ThetaCM [gated]; thatCM [deg]; Elum- rho [mm] " , angBin , thetaCMRange [ 0 ] , thetaCMRange [ 1 ] , 400 , 0 , elumRange ) ;
tree - > Draw ( " rhoElum1:thetaCM>>hElum1RThetaCM " , gate , " colz " ) ;
TH1F * htemp = ( TH1F * ) hElum1RThetaCM - > ProjectionX ( " htemp " ) ;
double rel = ( thetaCMRange [ 1 ] - thetaCMRange [ 0 ] ) * 1.0 / angBin ;
printf ( " angular resolution : %f deg \n " , rel ) ;
vector < double > xList ;
double old_y = 0 ;
for ( int i = 1 ; i < = angBin ; i + + ) {
double y = htemp - > GetBinContent ( i ) ;
if ( old_y = = 0 & & y > 0 ) xList . push_back ( htemp - > GetBinCenter ( i ) ) ;
if ( old_y > 0 & & y = = 0 ) xList . push_back ( htemp - > GetBinCenter ( i ) ) ;
old_y = y ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
printf ( " list of gaps : \n " ) ;
for ( int i = 0 ; i < ( int ) xList . size ( ) ; i + = 2 ) {
printf ( " %d | %.3f - %.3f deg \n " , i , xList [ i ] , xList [ i + 1 ] ) ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
TF1 f1 ( " f1 " , " sin(x) " ) ;
double acceptance = 0 ;
double err1 = 0 ;
double err2 = 0 ;
for ( int i = 0 ; i < ( int ) xList . size ( ) ; i + = 2 ) {
acceptance + = f1 . Integral ( xList [ i ] * TMath : : DegToRad ( ) , xList [ i + 1 ] * TMath : : DegToRad ( ) ) * TMath : : TwoPi ( ) ;
err1 + = f1 . Integral ( ( xList [ i ] - rel ) * TMath : : DegToRad ( ) , ( xList [ i + 1 ] + rel ) * TMath : : DegToRad ( ) ) * TMath : : TwoPi ( ) ;
err2 + = f1 . Integral ( ( xList [ i ] + rel ) * TMath : : DegToRad ( ) , ( xList [ i + 1 ] - rel ) * TMath : : DegToRad ( ) ) * TMath : : TwoPi ( ) ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
printf ( " acceptance = %f sr +- %f \n " , acceptance , ( err1 - err2 ) / 2 ) ;
TLatex text ;
text . SetTextFont ( 82 ) ;
text . SetTextSize ( 0.06 ) ;
text . SetTextColor ( 2 ) ;
text . SetTextAngle ( 90 ) ;
for ( int i = 0 ; i < ( int ) xList . size ( ) ; i + + ) {
text . DrawLatex ( xList [ i ] , elumRange / 2 , Form ( " %.2f " , xList [ i ] ) ) ;
2023-04-03 16:03:48 -04:00
}
2024-02-20 18:15:16 -05:00
text . SetNDC ( ) ;
text . SetTextAngle ( 0 ) ;
text . DrawLatex ( 0.15 , 0.15 , Form ( " accp. = %.2f(%.2f) msr " , acceptance * 1000. , ( err1 - err2 ) * 1000. / 2 ) ) ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
}
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
if ( pID = = pHitID ) {
printf ( " =======================meaning of Hit ID \n " ) ;
printf ( " 1 = light recoil hit array & heavy recoil hit recoil \n " ) ;
printf ( " 0 = no detector \n " ) ;
printf ( " -1 = light recoil go opposite side of array \n " ) ;
printf ( " -2 = light recoil hit > det width \n " ) ;
printf ( " -3 = light recoil hit > array \n " ) ;
printf ( " -4 = light recoil hit blocker \n " ) ;
printf ( " -10 = light recoil orbit radius too big \n " ) ;
printf ( " -11 = light recoil orbit radius too small \n " ) ;
printf ( " -12 = when reocol at the same side of array, light recoil blocked by recoil detector \n " ) ;
printf ( " -13 = more than 3 loops \n " ) ;
printf ( " -14 = heavy recoil did not hit recoil \n " ) ;
printf ( " -15 = cannot find hit on array \n " ) ;
printf ( " -20 = unknown \n " ) ;
printf ( " =========================================== \n " ) ;
TH1F * hHit = new TH1F ( " hHit " , " hit; hit-ID; count " , 13 , - 11 , 2 ) ;
tree - > Draw ( " hit>>hHit " , " " , " " ) ;
}
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
}
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
cCheck - > Modified ( ) ;
cCheck - > Update ( ) ;
if ( outputCanvas ) {
TDatime dateTime ;
TString outPNGName = Form ( " Sim_%d%02d%02d_%06d.png " , dateTime . GetYear ( ) , dateTime . GetMonth ( ) , dateTime . GetDay ( ) , dateTime . GetTime ( ) ) ;
cCheck - > SaveAs ( outPNGName ) ;
printf ( " %s \n " , outPNGName . Data ( ) ) ;
gROOT - > ProcessLine ( " .q " ) ;
}
2023-04-03 16:03:48 -04:00
}
///============================================================
///============================================================
double * FindRange ( TString branch , TString gate , TTree * tree , double output [ 2 ] ) {
2024-02-20 18:15:16 -05:00
tree - > Draw ( Form ( " %s>>temp1 " , branch . Data ( ) ) , gate ) ;
TH1F * temp1 = ( TH1F * ) gROOT - > FindObjectAny ( " temp1 " ) ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
output [ 1 ] = temp1 - > GetXaxis ( ) - > GetXmax ( ) ;
output [ 0 ] = temp1 - > GetXaxis ( ) - > GetXmin ( ) ;
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
delete temp1 ;
return output ;
2023-04-03 16:03:48 -04:00
}
double ExtractNumber ( int index , TMacro * macro ) {
TString field = macro - > GetListOfLines ( ) - > At ( index ) - > GetName ( ) ;
int pos = field . First ( ' / ' ) ;
if ( pos > = 0 ) field . Remove ( pos ) ;
return field . Atof ( ) ;
}
TString ExtractString ( int index , TMacro * macro ) {
TString field = macro - > GetListOfLines ( ) - > At ( index ) - > GetName ( ) ;
int pos = field . First ( ' / ' ) ;
if ( pos > = 0 ) field . Remove ( pos ) ;
return field ;
}
vector < TString > StringToVector ( TString str ) {
2024-02-20 18:15:16 -05:00
vector < TString > temp ;
bool startFlag = false ;
bool endFlag = false ;
string jaja = " " ;
for ( int i = 0 ; i < str . Length ( ) ; i + + ) {
if ( str [ i ] = = ' { ' ) {
startFlag = true ;
continue ;
}
if ( str [ i ] = = ' ' ) {
continue ;
}
if ( startFlag & & ! endFlag ) {
if ( str [ i ] = = ' , ' ) {
temp . push_back ( jaja ) ;
jaja = " " ;
continue ;
}
if ( str [ i ] = = ' } ' ) {
temp . push_back ( jaja ) ;
endFlag = true ;
continue ;
}
jaja + = str [ i ] ;
}
}
return temp ;
2023-04-03 16:03:48 -04:00
}
vector < int > intConvertor ( vector < TString > arr ) {
2024-02-20 18:15:16 -05:00
vector < int > out ;
for ( int i = 0 ; i < ( int ) arr . size ( ) ; i + + ) {
out . push_back ( arr [ i ] . Atoi ( ) ) ;
}
return out ;
2023-04-03 16:03:48 -04:00
}
vector < double > doubleConvertor ( vector < TString > arr ) {
2024-02-20 18:15:16 -05:00
vector < double > out ;
for ( int i = 0 ; i < ( int ) arr . size ( ) ; i + + ) {
out . push_back ( arr [ i ] . Atof ( ) ) ;
}
return out ;
2023-04-03 16:03:48 -04:00
}
plotID StringToPlotID ( TString str ) {
2024-02-20 18:15:16 -05:00
if ( str = = " pEZ " ) return plotID : : pEZ ; ///0
if ( str = = " pRecoilXY " ) return plotID : : pRecoilXY ; /// 1
if ( str = = " pRecoilXY1 " ) return plotID : : pRecoilXY1 ; /// 2
if ( str = = " pRecoilXY2 " ) return plotID : : pRecoilXY2 ; /// 3
if ( str = = " pRecoilRZ " ) return plotID : : pRecoilRZ ; /// 4
if ( str = = " pRecoilRTR " ) return plotID : : pRecoilRTR ; /// 5
if ( str = = " pTDiffZ " ) return plotID : : pTDiffZ ; /// 6
if ( str = = " pThetaCM " ) return plotID : : pThetaCM ; /// 7
if ( str = = " pThetaCM_Z " ) return plotID : : pThetaCM_Z ; /// 8
if ( str = = " pExCal " ) return plotID : : pExCal ; /// 9
if ( str = = " pRecoilRThetaCM " ) return plotID : : pRecoilRThetaCM ; /// 10
if ( str = = " pArrayXY " ) return plotID : : pArrayXY ; /// 11
if ( str = = " pInfo " ) return plotID : : pInfo ; /// 12
if ( str = = " pHitID " ) return plotID : : pHitID ; /// 13
if ( str = = " pElum1XY " ) return plotID : : pElum1XY ; /// 14
if ( str = = " pEElum1R " ) return plotID : : pEElum1R ; /// 14
if ( str = = " pElum1RThetaCM " ) return plotID : : pElum1RThetaCM ; /// 15
if ( str = = " pEmpty " ) return plotID : : pEmpty ; /// 16
return plotID : : pEmpty ;
2023-04-03 16:03:48 -04:00
}