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

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

ROOT35. 波形分析分析代碼

2023-08-27 12:51 作者:guanming-yf  | 我要投稿

void ana(){

? //1. create a TFile file

? //2. create a TTree tree

? //3. define (1) timestamp, (2) time, (3) ch1, (4) ch2, (5) flag_coin

? //4. read the raw data

? //5. save data to tree/file

? const int N = 200;

? double timestamp = 0.0;

? bool flag_coincident;

? vector<double> vtime;

? vector<double> channel1;

? vector<double> channel2;

? double tempT, tempC1, tempC2;

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

? TTree *tree = new TTree( "WFM", "ep annihilation waveform" );

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

? tree->Branch("Time", &vtime);

? tree->Branch("Channel1", &channel1);

? tree->Branch("Channel2", &channel2);

? tree->Branch("Flag_Coincident", &flag_coincident, "Flag_Coincident/B");

? cout << "start reading" << endl;

? string filename;

? std::ifstream read;

? // j is file id

? for( int j=1; j<20001; j++ ){

? ? filename = Form( "./waveforms/WFM%05d.txt", j );

? ? read.open( filename.c_str() );

? ? // assign value to branches

? ? read >> timestamp;

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

? ? ? read >> tempT >> tempC1 >> tempC2;

? ? ? vtime.push_back( tempT );

? ? ? channel1.push_back( tempC1 );

? ? ? channel2.push_back( tempC2 );

? ? }

? ? // check whether it is an annihilation event

? ? auto c2minimum = std::min_element( channel2.begin(), channel2.end() );

? ? int c2miniID = std::distance( channel2.begin(), c2minimum );

? ? if ( 95<c2miniID && c2miniID <105 ?){ flag_coincident = 1; }

? ? else{ flag_coincident = 0; }

? ??

? ? tree->Fill();

? ? vtime.clear();

? ? channel1.clear();

? ? channel2.clear();

? ? read.close();

? }

? tree->Write();

? ofile->Close();

? cout << "end reading" << endl;

? ?

??

}


ROOT35. 波形分析分析代碼的評論 (共 條)

分享到微博請遵守國家法律
赣榆县| 南涧| 玛曲县| 文安县| 通化县| 朔州市| 乌审旗| 洞口县| 赫章县| 彩票| 云和县| 延吉市| 彭山县| 勐海县| 庆阳市| 嘉鱼县| 大连市| 金阳县| 石林| 镇巴县| 屏东县| 开封县| 行唐县| 睢宁县| 泾阳县| 陈巴尔虎旗| 宜州市| 玉山县| 娄烦县| 湖口县| 依安县| 瑞金市| 乌拉特前旗| 清远市| 湘西| 五河县| 富顺县| 建德市| 象山县| 漠河县| 台南县|