最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊

ROOT36: 波形分析代碼2

2023-08-29 12:39 作者:guanming-yf  | 我要投稿

#include "iostream"

using namespace std;

void ana2(){

? // 1. read the WFM.root file, and get data

? TFile *ifile = new TFile( "../root35/WFM.root", "read" );

? TTree *itree = (TTree*)ifile->Get( "WFM" );

? double timestamp =0.0;

? vector<double> *time = 0;

? vector<double> *channel1 = 0;

? vector<double> *channel2 = 0;

? itree->SetBranchAddress( "TimeStamp", &timestamp );

? itree->SetBranchAddress( "Time", &time );

? itree->SetBranchAddress( "Channel1", &channel1 );

? itree->SetBranchAddress( "Channel2", &channel2 );

??

? // 2. analyze the waveform and get some charateristic values, ex. timestamp, peakenergy, and flag

? // energy = peakheight *511 / 0.31 [keV]

? // time = 5*timeindex [ns]

? double TimeStamp;

? double PeakHeight1;

? double PeakEnergy1;

? double PeakHeight2;

? double PeakEnergy2;

? double PeakTime1;

? double PeakTime2;

? bool Flag_Coin;

? const int N = itree->GetEntries();

? TFile *ofile = new TFile( "WFM_Analysis.root", "recreate" );

? TTree *otree = new TTree( "WFM", "analyzed WFM" );

? otree->Branch( "TimeStamp", &TimeStamp, "TimeStamp/D" );

? otree->Branch( "PeakEnergy1", &PeakEnergy1, "PeakEnergy1/D" ?);

? otree->Branch( "PeakEnergy2", &PeakEnergy2, "PeakEnergy2/D" ?);

? otree->Branch( "PeakTime1", &PeakTime1, "PeakTime1/D" ?);

? otree->Branch( "PeakTime2", &PeakTime2, "PeakTime2/D" ?);

? otree->Branch( "Flag_Coin", &Flag_Coin, "Flag_Coin/O" );

? //3 . save the analyzed data into a new file WFM_analysis.root

? for( int j=0; j<N; j++ ){

? ? // j is the number-th of event

? ? cout << "Analyzing " << j << "-th event" <<"\r" << flush;

? ??

? ? itree->GetEntry(j);

? ? TimeStamp = timestamp;

? ? auto pk1 = std::min_element( channel1->begin(), channel1->end() );

? ? PeakHeight1 = *pk1;

? ? PeakEnergy1 = -PeakHeight1*(511/0.31);

? ? auto PeakIndex1 = std::distance( channel1->begin(), pk1 );

? ? PeakTime1 = 5*PeakIndex1;

? ? auto pk2 = std::min_element( channel2->begin(), channel2->end() );

? ? PeakHeight2 = *pk2;

? ? PeakEnergy2 = -PeakHeight2*(511/0.31);

? ? auto PeakIndex2 = std::distance( channel2->begin(), pk2 );

? ? PeakTime2 = 5*PeakIndex2;

? ? if( (450<PeakEnergy2&&PeakEnergy2<560)&&(400<PeakTime2&&PeakTime2<700) ){

? ? ? Flag_Coin = 1;

? ? }else{

? ? ? Flag_Coin = 0;

? ? }

? ??

? ? otree->Fill();

? }

? cout << endl;

? otree->Write();

? ofile->Close();

}


ROOT36: 波形分析代碼2的評論 (共 條)

分享到微博請遵守國家法律
冀州市| 雷波县| 伊吾县| 阿瓦提县| 松桃| 澄城县| 威信县| 绥中县| 阳曲县| 焉耆| 美姑县| 子长县| 永福县| 屯昌县| 濉溪县| 绥芬河市| 喀喇| 大冶市| 盘山县| 巫溪县| 云和县| 进贤县| 竹山县| 仁化县| 富川| 湄潭县| 轮台县| 无锡市| 华坪县| 镇平县| 孝昌县| 东山县| 海阳市| 临沧市| 旺苍县| 广元市| 八宿县| 山丹县| 凉城县| 道孚县| 诏安县|