From e4db2cb8b418d3de82ce45fb45458836ee574f53 Mon Sep 17 00:00:00 2001 From: klendathu2k <56083924+klendathu2k@users.noreply.github.com> Date: Sun, 29 Jan 2023 18:41:08 -0500 Subject: [PATCH] [root6] Avoid using unnecessary typedefs for TDataSet (#483) The typedefs aliasing St_DataSet to TDataSet are not required. This prevents us from running some nightly tests which load DB tables which utilize this alias. Fix error: unknown type name 'St_DataSet' in ROOT6 tests ``` LoadTable: .L /star-sw/StarDb/tpc/tsspars/tsspar.y2019.C In file included from input_line_851:1: /star-sw/StarDb/tpc/tsspars/tsspar.y2019.C:3:1: error: unknown type name 'St_DataSet' St_DataSet *CreateTable() { ^ /star-sw/StarDb/tpc/tsspars/tsspar.y2019.C:57:10: error: use of undeclared identifier 'St_DataSet' return (St_DataSet *)tableSet; ^ /star-sw/StarDb/tpc/tsspars/tsspar.y2019.C:57:22: error: expected expression return (St_DataSet *)tableSet; ^ root4star: .sl79_gcc485/OBJ/StRoot/St_db_Maker/St_db_Maker.cxx:932: virtual TDataSet* St_db_Maker::LoadTable(TDataSet*): Assertion `!ee' failed. sh: line 1: 133 Aborted (core dumped) MALLOC_CHECK_=3 root4star -b -q -l 'bfc.C(50, "pp2022,StiCA,BEmcChkStat,ftt,-picowrite,-hitfilt,-evout", "/star/rcf/test/daq/2022/040/23040001/st_fwd_23040001_raw_0000003.daq")' Error: Process completed with exit code 134. ``` --- StarDb/ctf/ctg/ctb.C | 4 ++-- StarDb/ctf/ctg/ctb_slat.C | 4 ++-- StarDb/ctf/ctg/ctb_slat_eta.C | 4 ++-- StarDb/ctf/ctg/ctb_slat_phi.C | 4 ++-- StarDb/ctf/ctg/tof.C | 4 ++-- StarDb/ctf/ctg/tof_slat.C | 4 ++-- StarDb/ctf/ctg/tof_slat_eta.C | 4 ++-- StarDb/ctf/ctg/tof_slat_phi.C | 4 ++-- StarDb/ctf/cts/cts_ctb.C | 4 ++-- StarDb/ctf/cts/cts_tof.C | 4 ++-- StarDb/ebye/sca/sca_const.C | 4 ++-- StarDb/ebye/sca/sca_filter_const.C | 4 ++-- StarDb/ebye/sca/sca_switch.C | 4 ++-- StarDb/emc/cal/ems_cal_control.C | 4 ++-- StarDb/emc/cal/org_ped_bemc.C | 4 ++-- StarDb/emc/cal/org_ped_bemc_h.C | 4 ++-- StarDb/emc/cal/org_ped_bprs.C | 4 ++-- StarDb/emc/cal/org_ped_bprs_h.C | 4 ++-- StarDb/emc/cal/org_ped_bsmde.C | 4 ++-- StarDb/emc/cal/org_ped_bsmde_h.C | 4 ++-- StarDb/emc/cal/org_ped_bsmdp.C | 4 ++-- StarDb/emc/cal/org_ped_bsmdp_h.C | 4 ++-- StarDb/emc/cal/org_ped_eemc.C | 4 ++-- StarDb/emc/cal/org_ped_eemc_h.C | 4 ++-- StarDb/emc/cal/org_ped_eprs.C | 4 ++-- StarDb/emc/cal/org_ped_eprs_h.C | 4 ++-- StarDb/emc/cal/org_slp_bemc.C | 4 ++-- StarDb/emc/cal/org_slp_bemc_h.C | 4 ++-- StarDb/emc/cal/org_slp_bprs.C | 4 ++-- StarDb/emc/cal/org_slp_bprs_h.C | 4 ++-- StarDb/emc/cal/org_slp_bsmde.C | 4 ++-- StarDb/emc/cal/org_slp_bsmde_h.C | 4 ++-- StarDb/emc/cal/org_slp_bsmdp.C | 4 ++-- StarDb/emc/cal/org_slp_bsmdp_h.C | 4 ++-- StarDb/emc/cal/org_slp_eemc.C | 4 ++-- StarDb/emc/cal/org_slp_eemc_h.C | 4 ++-- StarDb/emc/cal/org_slp_eprs.C | 4 ++-- StarDb/emc/cal/org_slp_eprs_h.C | 4 ++-- StarDb/emc/ems/control_toadc.C | 4 ++-- StarDb/emc/ems/ems_control.C | 4 ++-- StarDb/emc/jet/emc_egrid_par.C | 4 ++-- StarDb/emc/jet/emc_jetpar.C | 4 ++-- StarDb/ftpc/ftpcClusterPars.C | 4 ++-- StarDb/ftpc/ftpcFastSimGas.C | 4 ++-- StarDb/ftpc/ftpcFastSimPars.C | 4 ++-- StarDb/ftpc/ftpcSlowSimGas.C | 4 ++-- StarDb/ftpc/ftpcSlowSimPars.C | 4 ++-- StarDb/ftpc/ftpcTrackingPars.C | 4 ++-- StarDb/ftpc/ftpcdEdxPars.C | 4 ++-- StarDb/global/vertices/stk_vtx.C | 4 ++-- StarDb/global/vertices/stk_vtx_direct.C | 4 ++-- StarDb/mwc/mwcpars/cal.C | 4 ++-- StarDb/mwc/mwcpars/geom.C | 4 ++-- StarDb/mwc/mwcpars/mpar.C | 4 ++-- StarDb/svt/sgrpars/pix_info.C | 4 ++-- StarDb/svt/sprpars/sprpar.C | 4 ++-- StarDb/svt/srspars/srs_activea.C | 4 ++-- StarDb/svt/srspars/srs_srspar.C | 4 ++-- StarDb/svt/stkpars/stk_filler.C | 4 ++-- StarDb/svt/svgpars/config.C | 4 ++-- StarDb/svt/svgpars/geom.C | 4 ++-- StarDb/svt/svgpars/geom.C.6cm | 4 ++-- StarDb/svt/svgpars/geom.C.MDC4 | 4 ++-- StarDb/svt/svgpars/geomy1l.C | 4 ++-- StarDb/svt/svgpars/shape.C | 4 ++-- StarDb/tpc/fmtpars/fmtpar.C | 4 ++-- StarDb/tpc/tclpars/tclpar.C | 4 ++-- StarDb/tpc/tclpars/type.C | 4 ++-- StarDb/tpc/tfspars/tfs_fsctrl.C | 4 ++-- StarDb/tpc/tfspars/tfs_fspar.C | 4 ++-- StarDb/tpc/tidpars/tdeparm.C | 4 ++-- StarDb/tpc/tidpars/tpipar.C | 4 ++-- StarDb/tpc/tptpars/tpt_pars.20000217.000000.C | 4 ++-- StarDb/tpc/tptpars/tpt_pars.20000301.000005.C | 4 ++-- StarDb/tpc/tptpars/tpt_pars.er99.C | 4 ++-- StarDb/tpc/tptpars/tpt_pars.sd97.C | 4 ++-- StarDb/tpc/tptpars/tpt_pars.year_1a.C | 4 ++-- StarDb/tpc/tptpars/tpt_pars.year_1c.C | 4 ++-- StarDb/tpc/tptpars/tpt_pars.year_1h.C | 4 ++-- StarDb/tpc/tptpars/tpt_pars.year_2a.C | 4 ++-- StarDb/tpc/tptpars/tpt_spars.C | 4 ++-- StarDb/tpc/tsspars/tsspar.19991216.000000.C | 4 ++-- StarDb/tpc/tsspars/tsspar.19991217.000000.C | 4 ++-- StarDb/tpc/tsspars/tsspar.er99.C | 4 ++-- StarDb/tpc/tsspars/tsspar.es99.C | 4 ++-- StarDb/tpc/tsspars/tsspar.sd97.C | 4 ++-- StarDb/tpc/tsspars/tsspar.y2018.C | 4 ++-- StarDb/tpc/tsspars/tsspar.y2019.C | 4 ++-- StarDb/tpc/tsspars/tsspar.year_1a.C | 4 ++-- StarDb/tpc/tsspars/tsspar.year_1c.C | 4 ++-- StarDb/tpc/ttepars/tte_control.C | 4 ++-- 91 files changed, 182 insertions(+), 182 deletions(-) diff --git a/StarDb/ctf/ctg/ctb.C b/StarDb/ctf/ctg/ctb.C index fa2f21a77b5..e6c49ccb2d2 100644 --- a/StarDb/ctf/ctg/ctb.C +++ b/StarDb/ctf/ctg/ctb.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/ctb Allocated rows: 1 Used rows: 1 Row size: 68 bytes // Table: ctg_geo_st[0]--> ctg_geo_st[0] @@ -28,5 +28,5 @@ memset(&row,0,tableSet->GetRowSize()); row.tray_phi_zero = 0; // ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/ctg/ctb_slat.C b/StarDb/ctf/ctg/ctb_slat.C index 505208a63bf..c1f42698e3e 100644 --- a/StarDb/ctf/ctg/ctb_slat.C +++ b/StarDb/ctf/ctg/ctb_slat.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // params/ctf/ctg/ctb_slat Allocated rows: 240 Used rows: 240 Row size: 32 bytes // Table: ctg_slat_st[0]--> ctg_slat_st[239] @@ -23,5 +23,5 @@ St_ctg_slat *tableSet = new St_ctg_slat("ctb_slat",240); } } // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/ctg/ctb_slat_eta.C b/StarDb/ctf/ctg/ctb_slat_eta.C index 0fba770523e..6e5ce69bf0b 100644 --- a/StarDb/ctf/ctg/ctb_slat_eta.C +++ b/StarDb/ctf/ctg/ctb_slat_eta.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/ctb_slat_eta Allocated rows: 4 Used rows: 4 Row size: 36 bytes // Table: ctg_slat_eta_st[0]--> ctg_slat_eta_st[3] @@ -53,5 +53,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_min = 241.49; // ; tableSet->AddAt(&row,3); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/ctg/ctb_slat_phi.C b/StarDb/ctf/ctg/ctb_slat_phi.C index 53b2ebcafb3..42e7147778e 100644 --- a/StarDb/ctf/ctg/ctb_slat_phi.C +++ b/StarDb/ctf/ctg/ctb_slat_phi.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/ctb_slat_phi Allocated rows: 60 Used rows: 60 Row size: 16 bytes // Table: ctg_slat_phi_st[0]--> ctg_slat_phi_st[59] @@ -369,5 +369,5 @@ memset(&row,0,tableSet->GetRowSize()); row.phi_min = 351.092; // ; tableSet->AddAt(&row,59); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/ctg/tof.C b/StarDb/ctf/ctg/tof.C index ffa9065bd4b..8cb8290701d 100644 --- a/StarDb/ctf/ctg/tof.C +++ b/StarDb/ctf/ctg/tof.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/tof Allocated rows: 1 Used rows: 1 Row size: 68 bytes // Table: ctg_geo_st[0]--> ctg_geo_st[0] @@ -28,5 +28,5 @@ memset(&row,0,tableSet->GetRowSize()); row.tray_phi_zero = 0; // ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/ctg/tof_slat.C b/StarDb/ctf/ctg/tof_slat.C index 2400050c29b..69be2e8158c 100644 --- a/StarDb/ctf/ctg/tof_slat.C +++ b/StarDb/ctf/ctg/tof_slat.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // params/ctf/ctg/tof_slat Allocated rows: 5400 Used rows: 5400 Row size: 32 bytes // Table: ctg_slat_st[0]--> ctg_slat_st[5399] @@ -23,5 +23,5 @@ St_ctg_slat *tableSet = new St_ctg_slat("tof_slat",5400); } } // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/ctg/tof_slat_eta.C b/StarDb/ctf/ctg/tof_slat_eta.C index 3fd7613e603..cc79c23e6d4 100644 --- a/StarDb/ctf/ctg/tof_slat_eta.C +++ b/StarDb/ctf/ctg/tof_slat_eta.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/tof_slat_eta Allocated rows: 18 Used rows: 18 Row size: 36 bytes // Table: ctg_slat_eta_st[0]--> ctg_slat_eta_st[17] @@ -207,5 +207,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_min = 205.56; // ; tableSet->AddAt(&row,17); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/ctg/tof_slat_phi.C b/StarDb/ctf/ctg/tof_slat_phi.C index 766c4d21e18..03007ded5ef 100644 --- a/StarDb/ctf/ctg/tof_slat_phi.C +++ b/StarDb/ctf/ctg/tof_slat_phi.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/tof_slat_phi Allocated rows: 300 Used rows: 300 Row size: 16 bytes // Table: ctg_slat_phi_st[0]--> ctg_slat_phi_st[299] @@ -1809,5 +1809,5 @@ memset(&row,0,tableSet->GetRowSize()); row.phi_min = 355.732; // ; tableSet->AddAt(&row,299); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/cts/cts_ctb.C b/StarDb/ctf/cts/cts_ctb.C index 7c7ca31cf75..3d91a214b89 100644 --- a/StarDb/ctf/cts/cts_ctb.C +++ b/StarDb/ctf/cts/cts_ctb.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cts/cts_ctb Allocated rows: 1 Used rows: 1 Row size: 1076 bytes // Table: cts_mpara_st[0]--> cts_mpara_st[0] @@ -280,5 +280,5 @@ memset(&row,0,tableSet->GetRowSize()); row.zero_suppression = 1; // ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ctf/cts/cts_tof.C b/StarDb/ctf/cts/cts_tof.C index 221737839f5..f5941ee3d6f 100644 --- a/StarDb/ctf/cts/cts_tof.C +++ b/StarDb/ctf/cts/cts_tof.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cts/cts_tof Allocated rows: 1 Used rows: 1 Row size: 1076 bytes // Table: cts_mpara_st[0]--> cts_mpara_st[0] @@ -280,5 +280,5 @@ memset(&row,0,tableSet->GetRowSize()); row.zero_suppression = 1; // ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ebye/sca/sca_const.C b/StarDb/ebye/sca/sca_const.C index bd8db6b914f..2ef42f60287 100644 --- a/StarDb/ebye/sca/sca_const.C +++ b/StarDb/ebye/sca/sca_const.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sca/sca_const Allocated rows: 1 Used rows: 1 Row size: 112 bytes // Table: sca_const_st[0]--> sca_const_st[0] @@ -39,5 +39,5 @@ memset(&row,0,tableSet->GetRowSize()); row.perfectdither = 0; // ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ebye/sca/sca_filter_const.C b/StarDb/ebye/sca/sca_filter_const.C index 195886a88c1..6602aa039c1 100644 --- a/StarDb/ebye/sca/sca_filter_const.C +++ b/StarDb/ebye/sca/sca_filter_const.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sca/sca_filter_const Allocated rows: 1 Used rows: 1 Row size: 28 bytes // Table: sca_filter_const_st[0]--> sca_filter_const_st[0] @@ -18,5 +18,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nGoodTraks = 50; // total no. of good tracks ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ebye/sca/sca_switch.C b/StarDb/ebye/sca/sca_switch.C index 63ee40162ec..e4fe71af735 100644 --- a/StarDb/ebye/sca/sca_switch.C +++ b/StarDb/ebye/sca/sca_switch.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sca/sca_switch Allocated rows: 1 Used rows: 1 Row size: 16 bytes // Table: sca_switch_st[0]--> sca_switch_st[0] @@ -15,5 +15,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nEvents = 0; // ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/ems_cal_control.C b/StarDb/emc/cal/ems_cal_control.C index cdbae231a57..04c3cf441ba 100644 --- a/StarDb/emc/cal/ems_cal_control.C +++ b/StarDb/emc/cal/ems_cal_control.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/ems_cal_control Allocated rows: 1 Used rows: 1 Row size: 52 bytes // Table: ems_cal_control_st[0]--> ems_cal_control_st[0] @@ -25,5 +25,5 @@ memset(&row,0,tableSet->GetRowSize()); row.occupancy = 0.5; // hit occupancy toy_simulator mode=1 ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_bemc.C b/StarDb/emc/cal/org_ped_bemc.C index 33635ad62c7..b8ca0da4c39 100644 --- a/StarDb/emc/cal/org_ped_bemc.C +++ b/StarDb/emc/cal/org_ped_bemc.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bemc Allocated rows: 4800 Used rows: 4800 Row size: 4 bytes // Table: emc_pedestal_st[0]--> emc_pedestal_st[4799] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.ped = 0; // pedestal for ADC channel ; for (Int_t i=0;i<4800;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_bemc_h.C b/StarDb/emc/cal/org_ped_bemc_h.C index c5b3d35f76f..eb79a6b34a5 100644 --- a/StarDb/emc/cal/org_ped_bemc_h.C +++ b/StarDb/emc/cal/org_ped_bemc_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bemc_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 2; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_bprs.C b/StarDb/emc/cal/org_ped_bprs.C index a93bbcd7d7a..a6b91e91589 100644 --- a/StarDb/emc/cal/org_ped_bprs.C +++ b/StarDb/emc/cal/org_ped_bprs.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bprs Allocated rows: 4800 Used rows: 4800 Row size: 4 bytes // Table: emc_pedestal_st[0]--> emc_pedestal_st[4799] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.ped = 0; // pedestal for ADC channel ; for (Int_t i=0;i<4800;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_bprs_h.C b/StarDb/emc/cal/org_ped_bprs_h.C index 36853761b0a..884e40b83d3 100644 --- a/StarDb/emc/cal/org_ped_bprs_h.C +++ b/StarDb/emc/cal/org_ped_bprs_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bprs_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 2; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_bsmde.C b/StarDb/emc/cal/org_ped_bsmde.C index 0d3cf1952d2..d10c5c342f4 100644 --- a/StarDb/emc/cal/org_ped_bsmde.C +++ b/StarDb/emc/cal/org_ped_bsmde.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bsmde Allocated rows: 18000 Used rows: 18000 Row size: 4 bytes // Table: emc_pedestal_st[0]--> emc_pedestal_st[17999] @@ -10,5 +10,5 @@ St_DataSet *CreateTable() { row.ped = 0; // pedestal for ADC channel ; for (Int_t i=0;i<18000;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_bsmde_h.C b/StarDb/emc/cal/org_ped_bsmde_h.C index 57acf404cda..60d49042e98 100644 --- a/StarDb/emc/cal/org_ped_bsmde_h.C +++ b/StarDb/emc/cal/org_ped_bsmde_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bsmde_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 1; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_bsmdp.C b/StarDb/emc/cal/org_ped_bsmdp.C index 958b66f2e9d..a3aac06a465 100644 --- a/StarDb/emc/cal/org_ped_bsmdp.C +++ b/StarDb/emc/cal/org_ped_bsmdp.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bsmdp Allocated rows: 18000 Used rows: 18000 Row size: 4 bytes // Table: emc_pedestal_st[0]--> emc_pedestal_st[17999] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { for (Int_t i=0;i<18000;i++) tableSet->AddAt(&row,i); // // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_bsmdp_h.C b/StarDb/emc/cal/org_ped_bsmdp_h.C index 430b6fbea44..fe81b1ab7a9 100644 --- a/StarDb/emc/cal/org_ped_bsmdp_h.C +++ b/StarDb/emc/cal/org_ped_bsmdp_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bsmdp_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 15; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_eemc.C b/StarDb/emc/cal/org_ped_eemc.C index a0786f948f0..6d4940ea34a 100644 --- a/StarDb/emc/cal/org_ped_eemc.C +++ b/StarDb/emc/cal/org_ped_eemc.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_eemc Allocated rows: 1440 Used rows: 1440 Row size: 4 bytes // Table: emc_pedestal_st[0]--> emc_pedestal_st[1439] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.ped = 0; // pedestal for ADC channel ; for (Int_t i=0;i<1440;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_eemc_h.C b/StarDb/emc/cal/org_ped_eemc_h.C index c70e90b85d2..13fbab92544 100644 --- a/StarDb/emc/cal/org_ped_eemc_h.C +++ b/StarDb/emc/cal/org_ped_eemc_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_eemc_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 5; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_eprs.C b/StarDb/emc/cal/org_ped_eprs.C index 789637b967d..64af4b0e69e 100644 --- a/StarDb/emc/cal/org_ped_eprs.C +++ b/StarDb/emc/cal/org_ped_eprs.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_eprs Allocated rows: 1440 Used rows: 1440 Row size: 4 bytes // Table: emc_pedestal_st[0]--> emc_pedestal_st[1439] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.ped = 0; // pedestal for ADC channel ; for (Int_t i=0;i<1440;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_ped_eprs_h.C b/StarDb/emc/cal/org_ped_eprs_h.C index 8ea9f8052a3..7f00f7e6ba7 100644 --- a/StarDb/emc/cal/org_ped_eprs_h.C +++ b/StarDb/emc/cal/org_ped_eprs_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_eprs_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 5; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_bemc.C b/StarDb/emc/cal/org_slp_bemc.C index af1a8b6aa38..2745b4a329a 100644 --- a/StarDb/emc/cal/org_slp_bemc.C +++ b/StarDb/emc/cal/org_slp_bemc.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bemc Allocated rows: 4800 Used rows: 4800 Row size: 4 bytes // Table: emc_adcslope_st[0]--> emc_adcslope_st[4799] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.p0 = 1; // adc slope for ADC channel ; for (Int_t i=0;i<4800;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_bemc_h.C b/StarDb/emc/cal/org_slp_bemc_h.C index 7f1b5b3d89b..8b15b7d7dc3 100644 --- a/StarDb/emc/cal/org_slp_bemc_h.C +++ b/StarDb/emc/cal/org_slp_bemc_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bemc_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 2; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_bprs.C b/StarDb/emc/cal/org_slp_bprs.C index fecf7dc0074..236cea7e4f5 100644 --- a/StarDb/emc/cal/org_slp_bprs.C +++ b/StarDb/emc/cal/org_slp_bprs.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bprs Allocated rows: 4800 Used rows: 4800 Row size: 4 bytes // Table: emc_adcslope_st[0]--> emc_adcslope_st[4799] @@ -11,5 +11,5 @@ St_DataSet *CreateTable() { row.p0 = 1; // adc slope for ADC channel ; for (Int_t i=0;i<4800;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_bprs_h.C b/StarDb/emc/cal/org_slp_bprs_h.C index ddd373df3d7..4bde731335f 100644 --- a/StarDb/emc/cal/org_slp_bprs_h.C +++ b/StarDb/emc/cal/org_slp_bprs_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bprs_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 2; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_bsmde.C b/StarDb/emc/cal/org_slp_bsmde.C index 0ff848ae368..783315b52b2 100644 --- a/StarDb/emc/cal/org_slp_bsmde.C +++ b/StarDb/emc/cal/org_slp_bsmde.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bsmde Allocated rows: 18000 Used rows: 18000 Row size: 4 bytes // Table: emc_adcslope_st[0]--> emc_adcslope_st[17999] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.p0 = 1; // adc slope for ADC channel ; for (Int_t i=0;i<18000;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_bsmde_h.C b/StarDb/emc/cal/org_slp_bsmde_h.C index 7181b7c0400..4efe97fc287 100644 --- a/StarDb/emc/cal/org_slp_bsmde_h.C +++ b/StarDb/emc/cal/org_slp_bsmde_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bsmde_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 1; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_bsmdp.C b/StarDb/emc/cal/org_slp_bsmdp.C index f2eca1512c5..9ebfef3bd22 100644 --- a/StarDb/emc/cal/org_slp_bsmdp.C +++ b/StarDb/emc/cal/org_slp_bsmdp.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bsmdp Allocated rows: 18000 Used rows: 18000 Row size: 4 bytes // Table: emc_adcslope_st[0]--> emc_adcslope_st[17999] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.p0 = 1; // adc slope for ADC channel ; for (Int_t i=0;i<18000;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_bsmdp_h.C b/StarDb/emc/cal/org_slp_bsmdp_h.C index 301a22414d1..6706ea62404 100644 --- a/StarDb/emc/cal/org_slp_bsmdp_h.C +++ b/StarDb/emc/cal/org_slp_bsmdp_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bsmdp_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 15; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_eemc.C b/StarDb/emc/cal/org_slp_eemc.C index 4e33608365a..345c79380c9 100644 --- a/StarDb/emc/cal/org_slp_eemc.C +++ b/StarDb/emc/cal/org_slp_eemc.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_eemc Allocated rows: 1440 Used rows: 1440 Row size: 4 bytes // Table: emc_adcslope_st[0]--> emc_adcslope_st[1439] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.p0 = 1; // adc slope for ADC channel ; for (Int_t i=0;i<1440;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_eemc_h.C b/StarDb/emc/cal/org_slp_eemc_h.C index e6f0eb0b0c9..375722dbffd 100644 --- a/StarDb/emc/cal/org_slp_eemc_h.C +++ b/StarDb/emc/cal/org_slp_eemc_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_eemc_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 5; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_eprs.C b/StarDb/emc/cal/org_slp_eprs.C index dfa5c632772..272fa01efa3 100644 --- a/StarDb/emc/cal/org_slp_eprs.C +++ b/StarDb/emc/cal/org_slp_eprs.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_eprs Allocated rows: 1440 Used rows: 1440 Row size: 4 bytes // Table: emc_adcslope_st[0]--> emc_adcslope_st[1439] @@ -12,5 +12,5 @@ St_DataSet *CreateTable() { row.p0 = 1; // adc slope for ADC channel ; for (Int_t i=0;i<1440;i++) tableSet->AddAt(&row,i); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/cal/org_slp_eprs_h.C b/StarDb/emc/cal/org_slp_eprs_h.C index 36608dadbd6..a4c81f56886 100644 --- a/StarDb/emc/cal/org_slp_eprs_h.C +++ b/StarDb/emc/cal/org_slp_eprs_h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_eprs_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes // Table: emc_calib_header_st[0]--> emc_calib_header_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.nsub = 5; // see emc_def.h ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/ems/control_toadc.C b/StarDb/emc/ems/control_toadc.C index c85985c4029..08e3646ac5e 100644 --- a/StarDb/emc/ems/control_toadc.C +++ b/StarDb/emc/ems/control_toadc.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ems/control_toadc Allocated rows: 1 Used rows: 1 Row size: 224 bytes // Table: control_toadc_st[0]--> control_toadc_st[0] @@ -75,5 +75,5 @@ memset(&row,0,tableSet->GetRowSize()); row.c3[7] = 0; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/ems/ems_control.C b/StarDb/emc/ems/ems_control.C index df69b0b0bce..acb7c6bc515 100644 --- a/StarDb/emc/ems/ems_control.C +++ b/StarDb/emc/ems/ems_control.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ems/ems_control Allocated rows: 1 Used rows: 1 Row size: 340 bytes // Table: ems_control_st[0]--> ems_control_st[0] @@ -96,5 +96,5 @@ memset(&row,0,tableSet->GetRowSize()); row.ideal_jet_mode = 1; // mode for idel jet finder 1=ideal,2=1-nuotrino,3=charged only ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/jet/emc_egrid_par.C b/StarDb/emc/jet/emc_egrid_par.C index 2f3447be461..ce88173e4ac 100644 --- a/StarDb/emc/jet/emc_egrid_par.C +++ b/StarDb/emc/jet/emc_egrid_par.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/jet/emc_egrid_par Allocated rows: 1 Used rows: 1 Row size: 16 bytes // Table: emc_egrid_par_st[0]--> emc_egrid_par_st[0] @@ -15,5 +15,5 @@ memset(&row,0,tableSet->GetRowSize()); row.ideal_phi_nbin = 100; // Size of energy matrix for ideal egrid ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/emc/jet/emc_jetpar.C b/StarDb/emc/jet/emc_jetpar.C index 4059f61d7f3..ca5aec2271e 100644 --- a/StarDb/emc/jet/emc_jetpar.C +++ b/StarDb/emc/jet/emc_jetpar.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/jet/emc_jetpar Allocated rows: 1 Used rows: 1 Row size: 76 bytes // Table: emc_jetpar_st[0]--> emc_jetpar_st[0] @@ -30,5 +30,5 @@ memset(&row,0,tableSet->GetRowSize()); row.eta_min = -2; // maxinum eta for jet ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ftpc/ftpcClusterPars.C b/StarDb/ftpc/ftpcClusterPars.C index 243e19cd811..b8eae2bb8fc 100644 --- a/StarDb/ftpc/ftpcClusterPars.C +++ b/StarDb/ftpc/ftpcClusterPars.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcClusterPars Allocated rows: 1 Used rows: 1 Row size: 156 bytes // Table: ftpcClusterPars_st[0]--> ftpcClusterPars_st[0] @@ -54,5 +54,5 @@ memset(&row,0,tableSet->GetRowSize()); tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ftpc/ftpcFastSimGas.C b/StarDb/ftpc/ftpcFastSimGas.C index babd5a479e0..110c12a3797 100644 --- a/StarDb/ftpc/ftpcFastSimGas.C +++ b/StarDb/ftpc/ftpcFastSimGas.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcFastSimGas Allocated rows: 1 Used rows: 1 Row size: 100 bytes // Table: ftpcFastSimGas_st[0]--> ftpcFastSimGas_st[0] @@ -36,5 +36,5 @@ memset(&row,0,tableSet->GetRowSize()); row.errorAzimuthalEstimates[3] = 0; // D= ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ftpc/ftpcFastSimPars.C b/StarDb/ftpc/ftpcFastSimPars.C index 50d66809805..5b8c18c84e1 100644 --- a/StarDb/ftpc/ftpcFastSimPars.C +++ b/StarDb/ftpc/ftpcFastSimPars.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcFastSimPars Allocated rows: 1 Used rows: 1 Row size: 44 bytes // Table: ftpcFastSimPars_st[0]--> ftpcFastSimPars_st[0] @@ -22,5 +22,5 @@ memset(&row,0,tableSet->GetRowSize()); row.clusterChargeConversionFactor = 6.; // D= convert adc counts to charge; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ftpc/ftpcSlowSimGas.C b/StarDb/ftpc/ftpcSlowSimGas.C index d339d99c027..0094a5ffcd8 100644 --- a/StarDb/ftpc/ftpcSlowSimGas.C +++ b/StarDb/ftpc/ftpcSlowSimGas.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcSlowSimGas Allocated rows: 132 Used rows: 132 Row size: 24 bytes // Table: ftpcSlowSimGas_st[0]--> ftpcSlowSimGas_st[131] @@ -1065,5 +1065,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lorentzAngle = 0.130551; // lorentz angle of drift electrons ; tableSet->AddAt(&row,131); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ftpc/ftpcSlowSimPars.C b/StarDb/ftpc/ftpcSlowSimPars.C index d37568f0215..a6bdc61ca3d 100644 --- a/StarDb/ftpc/ftpcSlowSimPars.C +++ b/StarDb/ftpc/ftpcSlowSimPars.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcSlowSimPars Allocated rows: 1 Used rows: 1 Row size: 44 bytes // Table: ftpcSlowSimPars_st[0]--> ftpcSlowSimPars_st[0] @@ -22,5 +22,5 @@ memset(&row,0,tableSet->GetRowSize()); row.slowSimPressure = 1013.25; // D = atmospheric pressure used; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ftpc/ftpcTrackingPars.C b/StarDb/ftpc/ftpcTrackingPars.C index 2c37048201a..dfe94b13127 100644 --- a/StarDb/ftpc/ftpcTrackingPars.C +++ b/StarDb/ftpc/ftpcTrackingPars.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcTrackingPars Allocated rows: 1 Used rows: 1 Row size: ??? bytes // Table: ftpcTrackingPars_st[0]--> ftpcTrackingPars_st[0] @@ -106,5 +106,5 @@ memset(&row,0,tableSet->GetRowSize()); tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/ftpc/ftpcdEdxPars.C b/StarDb/ftpc/ftpcdEdxPars.C index 5d9fe27f15e..2aa79a373dd 100644 --- a/StarDb/ftpc/ftpcdEdxPars.C +++ b/StarDb/ftpc/ftpcdEdxPars.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcdEdxPars Allocated rows: 1 Used rows: 1 Row size: 40 bytes // Table: ftpcdEdxPars_st[0]--> ftpcdEdxPars_st[0] @@ -21,5 +21,5 @@ memset(&row,0,tableSet->GetRowSize()); row.a_large_number = 1e+10; // a large number ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/global/vertices/stk_vtx.C b/StarDb/global/vertices/stk_vtx.C index 2f8c2cb1bbf..016feed97ff 100644 --- a/StarDb/global/vertices/stk_vtx.C +++ b/StarDb/global/vertices/stk_vtx.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/vertices/stk_vtx Allocated rows: 1 Used rows: 1 Row size: 48 bytes // Table: stk_vtx_st[0]--> stk_vtx_st[0] @@ -23,5 +23,5 @@ memset(&row,0,tableSet->GetRowSize()); row.x[2] = 0; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/global/vertices/stk_vtx_direct.C b/StarDb/global/vertices/stk_vtx_direct.C index 1bd5231bfe3..66ab6d4e10d 100644 --- a/StarDb/global/vertices/stk_vtx_direct.C +++ b/StarDb/global/vertices/stk_vtx_direct.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/vertices/stk_vtx_direct Allocated rows: 1 Used rows: 1 Row size: 16 bytes // Table: stk_vtx_direct_st[0]--> stk_vtx_direct_st[0] @@ -15,5 +15,5 @@ memset(&row,0,tableSet->GetRowSize()); row.sx[2] = 0.0005; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/mwc/mwcpars/cal.C b/StarDb/mwc/mwcpars/cal.C index 8fa0bd91066..20a527e93c1 100644 --- a/StarDb/mwc/mwcpars/cal.C +++ b/StarDb/mwc/mwcpars/cal.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/mwcpars/cal Allocated rows: 384 Used rows: 384 Row size: 12 bytes // Table: mwc_cal_st[0]--> mwc_cal_st[383] @@ -1929,5 +1929,5 @@ memset(&row,0,tableSet->GetRowSize()); row.ps = 0; // Pedestal dispersion ; tableSet->AddAt(&row,383); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/mwc/mwcpars/geom.C b/StarDb/mwc/mwcpars/geom.C index 1f0f5b2537f..ea2b197b4ca 100644 --- a/StarDb/mwc/mwcpars/geom.C +++ b/StarDb/mwc/mwcpars/geom.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/mwcpars/geom Allocated rows: 1 Used rows: 1 Row size: 28 bytes // Table: mwc_geo_st[0]--> mwc_geo_st[0] @@ -18,5 +18,5 @@ memset(&row,0,tableSet->GetRowSize()); row.r2min = 125.488; // Inner radius outer sectors ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/mwc/mwcpars/mpar.C b/StarDb/mwc/mwcpars/mpar.C index 9c2674c37d4..c7c1b0ce567 100644 --- a/StarDb/mwc/mwcpars/mpar.C +++ b/StarDb/mwc/mwcpars/mpar.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/mwcpars/mpar Allocated rows: 1 Used rows: 1 Row size: 32 bytes // Table: mwc_mpar_st[0]--> mwc_mpar_st[0] @@ -19,5 +19,5 @@ memset(&row,0,tableSet->GetRowSize()); row.min_ion = 0; // Minimum ionization ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/sgrpars/pix_info.C b/StarDb/svt/sgrpars/pix_info.C index 249b3a93d27..a03fda85729 100644 --- a/StarDb/svt/sgrpars/pix_info.C +++ b/StarDb/svt/sgrpars/pix_info.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sgrpars/pix_info Allocated rows: 4 Used rows: 4 Row size: 28 bytes // Table: sgr_pixmap_st[0]--> sgr_pixmap_st[3] @@ -45,5 +45,5 @@ memset(&row,0,tableSet->GetRowSize()); row.ZMax = 20; // Maximum Zscaled values in pixmap. ; tableSet->AddAt(&row,3); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/sprpars/sprpar.C b/StarDb/svt/sprpars/sprpar.C index 5b1478db1cc..0871bb1a8e9 100644 --- a/StarDb/svt/sprpars/sprpar.C +++ b/StarDb/svt/sprpars/sprpar.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sprpars/sprpar Allocated rows: 1 Used rows: 1 Row size: 8 bytes // Table: spr_sprpar_st[0]--> spr_sprpar_st[0] @@ -13,5 +13,5 @@ memset(&row,0,tableSet->GetRowSize()); row.p = 0; // momentum cut off for dE/dx in GeV/c ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/srspars/srs_activea.C b/StarDb/svt/srspars/srs_activea.C index ab5e9cc50f9..d9351ebdb1b 100644 --- a/StarDb/svt/srspars/srs_activea.C +++ b/StarDb/svt/srspars/srs_activea.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/srspars/srs_activea Allocated rows: 4 Used rows: 4 Row size: 44 bytes // Table: srs_activea_st[0]--> srs_activea_st[3] @@ -61,5 +61,5 @@ memset(&row,0,tableSet->GetRowSize()); row.param[9] = 0; tableSet->AddAt(&row,3); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/srspars/srs_srspar.C b/StarDb/svt/srspars/srs_srspar.C index a6ed275e8c1..07d85b1d831 100644 --- a/StarDb/svt/srspars/srs_srspar.C +++ b/StarDb/svt/srspars/srs_srspar.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/srspars/srs_srspar Allocated rows: 1 Used rows: 1 Row size: 84 bytes // Table: srs_srspar_st[0]--> srs_srspar_st[0] @@ -32,5 +32,5 @@ memset(&row,0,tableSet->GetRowSize()); row.vd = 700000; // drift velocity ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/stkpars/stk_filler.C b/StarDb/svt/stkpars/stk_filler.C index 9c3588059de..6eb04b3b631 100644 --- a/StarDb/svt/stkpars/stk_filler.C +++ b/StarDb/svt/stkpars/stk_filler.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/stkpars/stk_filler Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: stk_filler_st[0]--> stk_filler_st[0] @@ -71,5 +71,5 @@ memset(&row,0,tableSet->GetRowSize()); row.wth87 = 120; // wafer cone 7 to 8 ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/svgpars/config.C b/StarDb/svt/svgpars/config.C index 5f01d56229b..d783288dffd 100644 --- a/StarDb/svt/svgpars/config.C +++ b/StarDb/svt/svgpars/config.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/config Allocated rows: 1 Used rows: 1 Row size: 1168 bytes // Table: svg_config_st[0]--> svg_config_st[0] @@ -303,5 +303,5 @@ memset(&row,0,tableSet->GetRowSize()); row.x[2] = 0; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/svgpars/geom.C b/StarDb/svt/svgpars/geom.C index 09c362db7ea..5eafa14a849 100644 --- a/StarDb/svt/svgpars/geom.C +++ b/StarDb/svt/svgpars/geom.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/geom Allocated rows: 536 Used rows: 536 Row size: 68 bytes // Table: svg_geom_st[0]--> svg_geom_st[535] @@ -10194,5 +10194,5 @@ memset(&row,0,tableSet->GetRowSize()); row.x[2] = 32.25; tableSet->AddAt(&row,535); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/svgpars/geom.C.6cm b/StarDb/svt/svgpars/geom.C.6cm index ada946af6fb..80f0c168f84 100644 --- a/StarDb/svt/svgpars/geom.C.6cm +++ b/StarDb/svt/svgpars/geom.C.6cm @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/geom Allocated rows: 536 Used rows: 536 Row size: 68 bytes // Table: svg_geom_st[0]--> svg_geom_st[535] @@ -10194,5 +10194,5 @@ memset(&row,0,tableSet->GetRowSize()); row.x[2] = 32.25; tableSet->AddAt(&row,535); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/svgpars/geom.C.MDC4 b/StarDb/svt/svgpars/geom.C.MDC4 index 1b07c418013..3fd343d1e8a 100644 --- a/StarDb/svt/svgpars/geom.C.MDC4 +++ b/StarDb/svt/svgpars/geom.C.MDC4 @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/geom Allocated rows: 536 Used rows: 536 Row size: 68 bytes // Table: svg_geom_st[0]--> svg_geom_st[535] @@ -10194,5 +10194,5 @@ memset(&row,0,tableSet->GetRowSize()); row.x[2] = 32.25; tableSet->AddAt(&row,535); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/svgpars/geomy1l.C b/StarDb/svt/svgpars/geomy1l.C index 81112b847cb..15cc75f6e1f 100644 --- a/StarDb/svt/svgpars/geomy1l.C +++ b/StarDb/svt/svgpars/geomy1l.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/geom Allocated rows: 7 Used rows: 7 // Table: svg_geom_st[0]--> svg_geom_st[7] @@ -142,5 +142,5 @@ memset(&row,0,tableSet->GetRowSize()); row.x[2] = -18; tableSet->AddAt(&row,6); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/svt/svgpars/shape.C b/StarDb/svt/svgpars/shape.C index 4f9269636f1..ed1b4753e07 100644 --- a/StarDb/svt/svgpars/shape.C +++ b/StarDb/svt/svgpars/shape.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/shape Allocated rows: 2 Used rows: 2 Row size: 88 bytes // Table: svg_shape_st[0]--> svg_shape_st[1] @@ -57,5 +57,5 @@ memset(&row,0,tableSet->GetRowSize()); row.shape[9] = 0; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/fmtpars/fmtpar.C b/StarDb/tpc/fmtpars/fmtpar.C index c0f20279de0..1468efb47cb 100644 --- a/StarDb/tpc/fmtpars/fmtpar.C +++ b/StarDb/tpc/fmtpars/fmtpar.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/fmtpars/fmtpar Allocated rows: 1 Used rows: 1 Row size: 88 bytes // Table: tfc_fmtpar_st[0]--> tfc_fmtpar_st[0] @@ -33,5 +33,5 @@ memset(&row,0,tableSet->GetRowSize()); row.printf = 0; // output flag ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tclpars/tclpar.C b/StarDb/tpc/tclpars/tclpar.C index 52234b25102..a093b52c99d 100644 --- a/StarDb/tpc/tclpars/tclpar.C +++ b/StarDb/tpc/tclpars/tclpar.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tclpars/tclpar Allocated rows: 1 Used rows: 1 Row size: 48 bytes // Table: tcl_tclpar_st[0]--> tcl_tclpar_st[0] @@ -23,5 +23,5 @@ memset(&row,0,tableSet->GetRowSize()); row.triage_rmscut = 3; // cut on rms_pad + rms_tdc ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tclpars/type.C b/StarDb/tpc/tclpars/type.C index 1b4f6ffb437..47c0c7c5af8 100644 --- a/StarDb/tpc/tclpars/type.C +++ b/StarDb/tpc/tclpars/type.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tclpars/type Allocated rows: 1 Used rows: 1 Row size: 28 bytes // Table: tcl_tpc_index_type_st[0]--> tcl_tpc_index_type_st[0] @@ -18,5 +18,5 @@ memset(&row,0,tableSet->GetRowSize()); row.tptrack_tpsegment = 7; // correlate tptrack and tpsegment tables ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tfspars/tfs_fsctrl.C b/StarDb/tpc/tfspars/tfs_fsctrl.C index 9d0034bc8ee..61ce364cc4d 100644 --- a/StarDb/tpc/tfspars/tfs_fsctrl.C +++ b/StarDb/tpc/tfspars/tfs_fsctrl.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tfspars/tfs_fsctrl Allocated rows: 1 Used rows: 1 Row size: 32 bytes // Table: tfs_fsctrl_st[0]--> tfs_fsctrl_st[0] @@ -42,5 +42,5 @@ memset(&row,0,tableSet->GetRowSize()); row.sprf_ta[1] = 0.637; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tfspars/tfs_fspar.C b/StarDb/tpc/tfspars/tfs_fspar.C index ec41f765fae..1f6df12bd8c 100644 --- a/StarDb/tpc/tfspars/tfs_fspar.C +++ b/StarDb/tpc/tfspars/tfs_fspar.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tfspars/tfs_fspar Allocated rows: 1 Used rows: 1 Row size: 160 bytes // Table: tfs_fspar_st[0]--> tfs_fspar_st[0] @@ -23,5 +23,5 @@ memset(&row,0,tableSet->GetRowSize()); row.zbmax = 512; // total time bins ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tidpars/tdeparm.C b/StarDb/tpc/tidpars/tdeparm.C index 7bdc8f9b0be..d6d49c1fefb 100644 --- a/StarDb/tpc/tidpars/tdeparm.C +++ b/StarDb/tpc/tidpars/tdeparm.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tidpars/tdeparm Allocated rows: 1 Used rows: 1 Row size: 60 bytes // Table: tdeparm_st[0]--> tdeparm_st[0] @@ -27,7 +27,7 @@ memset(&row,0,tableSet->GetRowSize()); row.truncfact = 0.3; // fraction of dedx values to truncate ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tidpars/tpipar.C b/StarDb/tpc/tidpars/tpipar.C index 7d84ee55309..7ad6f89975c 100644 --- a/StarDb/tpc/tidpars/tpipar.C +++ b/StarDb/tpc/tidpars/tpipar.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tidpars/tpipar Allocated rows: 1 Used rows: 1 Row size: 132 bytes // Table: tpipar_st[0]--> tpipar_st[0] @@ -44,5 +44,5 @@ memset(&row,0,tableSet->GetRowSize()); row.skew[7] = 0; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_pars.20000217.000000.C b/StarDb/tpc/tptpars/tpt_pars.20000217.000000.C index 03036b1d44b..59c8849f0c9 100644 --- a/StarDb/tpc/tptpars/tpt_pars.20000217.000000.C +++ b/StarDb/tpc/tptpars/tpt_pars.20000217.000000.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes // Table: tpt_pars_st[0]--> tpt_pars_st[1] @@ -95,5 +95,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lfit = 0; // straigth line fit; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_pars.20000301.000005.C b/StarDb/tpc/tptpars/tpt_pars.20000301.000005.C index 03036b1d44b..59c8849f0c9 100644 --- a/StarDb/tpc/tptpars/tpt_pars.20000301.000005.C +++ b/StarDb/tpc/tptpars/tpt_pars.20000301.000005.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes // Table: tpt_pars_st[0]--> tpt_pars_st[1] @@ -95,5 +95,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lfit = 0; // straigth line fit; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_pars.er99.C b/StarDb/tpc/tptpars/tpt_pars.er99.C index f52b4ead8ac..a312ba5843a 100644 --- a/StarDb/tpc/tptpars/tpt_pars.er99.C +++ b/StarDb/tpc/tptpars/tpt_pars.er99.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes // Table: tpt_pars_st[0]--> tpt_pars_st[1] @@ -95,5 +95,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lfit = 0; // straigth line fit; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_pars.sd97.C b/StarDb/tpc/tptpars/tpt_pars.sd97.C index 49af2c46a5e..702f81de730 100644 --- a/StarDb/tpc/tptpars/tpt_pars.sd97.C +++ b/StarDb/tpc/tptpars/tpt_pars.sd97.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes // Table: tpt_pars_st[0]--> tpt_pars_st[1] @@ -95,5 +95,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lfit = 0; // straigth line fit; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_pars.year_1a.C b/StarDb/tpc/tptpars/tpt_pars.year_1a.C index aca0a59f255..feabdc5ac4c 100644 --- a/StarDb/tpc/tptpars/tpt_pars.year_1a.C +++ b/StarDb/tpc/tptpars/tpt_pars.year_1a.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes // Table: tpt_pars_st[0]--> tpt_pars_st[1] @@ -95,5 +95,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lfit = 0; // straigth line fit; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_pars.year_1c.C b/StarDb/tpc/tptpars/tpt_pars.year_1c.C index aca0a59f255..feabdc5ac4c 100644 --- a/StarDb/tpc/tptpars/tpt_pars.year_1c.C +++ b/StarDb/tpc/tptpars/tpt_pars.year_1c.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes // Table: tpt_pars_st[0]--> tpt_pars_st[1] @@ -95,5 +95,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lfit = 0; // straigth line fit; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_pars.year_1h.C b/StarDb/tpc/tptpars/tpt_pars.year_1h.C index aca0a59f255..feabdc5ac4c 100644 --- a/StarDb/tpc/tptpars/tpt_pars.year_1h.C +++ b/StarDb/tpc/tptpars/tpt_pars.year_1h.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes // Table: tpt_pars_st[0]--> tpt_pars_st[1] @@ -95,5 +95,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lfit = 0; // straigth line fit; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_pars.year_2a.C b/StarDb/tpc/tptpars/tpt_pars.year_2a.C index aca0a59f255..feabdc5ac4c 100644 --- a/StarDb/tpc/tptpars/tpt_pars.year_2a.C +++ b/StarDb/tpc/tptpars/tpt_pars.year_2a.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes // Table: tpt_pars_st[0]--> tpt_pars_st[1] @@ -95,5 +95,5 @@ memset(&row,0,tableSet->GetRowSize()); row.lfit = 0; // straigth line fit; tableSet->AddAt(&row,1); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tptpars/tpt_spars.C b/StarDb/tpc/tptpars/tpt_spars.C index fefb6808cbf..188180e7254 100644 --- a/StarDb/tpc/tptpars/tpt_spars.C +++ b/StarDb/tpc/tptpars/tpt_spars.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_spars Allocated rows: 1 Used rows: 1 Row size: 216 bytes // Table: tpt_spars_st[0]--> tpt_spars_st[0] @@ -65,5 +65,5 @@ memset(&row,0,tableSet->GetRowSize()); row.outlimit = 4; // ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.19991216.000000.C b/StarDb/tpc/tsspars/tsspar.19991216.000000.C index 6998902a0e7..a0e78312efd 100644 --- a/StarDb/tpc/tsspars/tsspar.19991216.000000.C +++ b/StarDb/tpc/tsspars/tsspar.19991216.000000.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.19991217.000000.C b/StarDb/tpc/tsspars/tsspar.19991217.000000.C index 6998902a0e7..a0e78312efd 100644 --- a/StarDb/tpc/tsspars/tsspar.19991217.000000.C +++ b/StarDb/tpc/tsspars/tsspar.19991217.000000.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.er99.C b/StarDb/tpc/tsspars/tsspar.er99.C index c604d46fbbf..c68b15563ca 100644 --- a/StarDb/tpc/tsspars/tsspar.er99.C +++ b/StarDb/tpc/tsspars/tsspar.er99.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.es99.C b/StarDb/tpc/tsspars/tsspar.es99.C index c604d46fbbf..c68b15563ca 100644 --- a/StarDb/tpc/tsspars/tsspar.es99.C +++ b/StarDb/tpc/tsspars/tsspar.es99.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.sd97.C b/StarDb/tpc/tsspars/tsspar.sd97.C index 085a1b4944c..6653282ea37 100644 --- a/StarDb/tpc/tsspars/tsspar.sd97.C +++ b/StarDb/tpc/tsspars/tsspar.sd97.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.y2018.C b/StarDb/tpc/tsspars/tsspar.y2018.C index a3dc49a4e87..d6370d8e0f8 100644 --- a/StarDb/tpc/tsspars/tsspar.y2018.C +++ b/StarDb/tpc/tsspars/tsspar.y2018.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.y2019.C b/StarDb/tpc/tsspars/tsspar.y2019.C index 6998902a0e7..a0e78312efd 100644 --- a/StarDb/tpc/tsspars/tsspar.y2019.C +++ b/StarDb/tpc/tsspars/tsspar.y2019.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.year_1a.C b/StarDb/tpc/tsspars/tsspar.year_1a.C index a3dc49a4e87..d6370d8e0f8 100644 --- a/StarDb/tpc/tsspars/tsspar.year_1a.C +++ b/StarDb/tpc/tsspars/tsspar.year_1a.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/tsspars/tsspar.year_1c.C b/StarDb/tpc/tsspars/tsspar.year_1c.C index a3dc49a4e87..d6370d8e0f8 100644 --- a/StarDb/tpc/tsspars/tsspar.year_1c.C +++ b/StarDb/tpc/tsspars/tsspar.year_1c.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes // Table: tss_tsspar_st[0]--> tss_tsspar_st[0] @@ -52,5 +52,5 @@ memset(&row,0,tableSet->GetRowSize()); row.z_laser = 100; // z drift length of pointlaser source(cm) ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; } diff --git a/StarDb/tpc/ttepars/tte_control.C b/StarDb/tpc/ttepars/tte_control.C index 5ae6c585f19..de4ac38fa45 100644 --- a/StarDb/tpc/ttepars/tte_control.C +++ b/StarDb/tpc/ttepars/tte_control.C @@ -1,4 +1,4 @@ -St_DataSet *CreateTable() { +TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ttepars/tte_control Allocated rows: 1 Used rows: 1 Row size: 12 bytes // Table: tte_control_st[0]--> tte_control_st[0] @@ -14,5 +14,5 @@ memset(&row,0,tableSet->GetRowSize()); row.res = 0; // Turn on/off calculation of the residuals ; tableSet->AddAt(&row,0); // ----------------- end of code --------------- - return (St_DataSet *)tableSet; + return (TDataSet *)tableSet; }