2003-06-27 22:45 Ed Larty * setup/: packages-R0-21, packages-R0.21.0: # renamed release file and also made all packages have VXX-YY-ZZ tags 2003-06-27 22:33 Ed Larty * setup/packages-R0-21: # let all packages have tag R0-21 except DatabaseTables and WebDocs packages 2003-06-27 21:45 kordosky * CalDetDST/UberModule.cxx, CalDetDST/UberPlotsModule.cxx, CalDetDST/UberPlotsModule.h, CalDetDST/macros/mc_udst.C, CalDetPID/AlgCalDetPID.cxx, CalDetPID/ParticleFilterModule.cxx, CalDetPID/data/BeamMomentumTable.rawinput, CalDetPID/data/CERRangeTable.rawinput, CalDetPID/data/CERTimeWinTable.rawinput, CalDetPID/data/OverlapWinTable.rawinput, CalDetPID/data/TOFRangeTable.rawinput: for r0.21 2003-06-27 21:35 Ed Larty * setup/: myrel, packages-R0-21: # included missing CalDetPID in R0-21 2003-06-27 20:53 Ed Larty * setup/: mytmp, packages-R0-21, setup_minossoft_tamu: # added new package file for frozen release R0-21 2003-06-27 19:38 hartnell * LISummary/: LIAna.C, LIAnalysis.cxx, LIAnalysis.h, transfer.csh: Added code to look at the effect of the reflector connectors at CalDet GainCurves() now makes plots on a stripend basis. The old method has become GainCurves_Led(). 2003-06-27 18:54 George Irwin * IoModules/IoInputStreamItr.cxx: Late commit backported to R0.20.0: Add support for coupled streams (e.g. Config to Cand). The method static const char* Per::GetAssociatedStreamList(const char* streamname) is used to determine which streams should be opened along with the specified streamname. The immediate use case is that the Config stream will now be automatically opened whenever the user requests the Cand stream. 2003-06-27 18:49 George Irwin * Persistency/: Per.cxx, Per.h, PerInputStreamManager.cxx: Late commit backported to R0.20.0: Add support for coupling streams (e.g. Config to Cand) and for defining a default sequence mode (e.g. Per::kLowerBound for Config) for framework supported data streams. The immediate use case is to make the loading of the Config record transparent to the user, e.g.: jc.Input.Set("Streams=DaqSnarl,Cand"); will now also load in the Config stream with sequence mode Per::kLowerBound by default. 2003-06-27 18:48 Robert Hatcher * CandTrackSR/: Track2DSR.h, TrackClusterSR.h: When data members are added/removed ClassDef version should be changed! 2003-06-27 16:30 Brett Viren * WebDocs/release-overview.html: latest iter 2003-06-27 16:15 Robert Hatcher * CandFitTrackSA/LinkDef.h: add dummy LinkDef.h so building (currently) empty package doesn't fail during codegen stage. 2003-06-27 16:05 Ed Larty * setup/: myrel, mytmp, packages_R0-21_tmp: # this package file will be used to create frozen release R0-21 2003-06-27 05:03 Sue Kasahara * IoModules/IoInputStreamItr.cxx: Add support for coupled streams (e.g. Config to Cand). The method static const char* Per::GetAssociatedStreamList(const char* streamname) is used to determine which streams should be opened along with the specified streamname. The immediate use case is that the Config stream will now be automatically opened whenever the user requests the Cand stream. 2003-06-27 05:00 Sue Kasahara * Persistency/: Per.cxx, Per.h, PerInputStreamManager.cxx: Add support for coupling streams (e.g. Config to Cand) and for defining a default sequence mode (e.g. Per::kLowerBound for Config) for framework supported data streams. The immediate use case is to make the loading of the Config record transparent to the user, e.g.: jc.Input.Set("Streams=DaqSnarl,Cand"); will now also load in the Config stream with sequence mode Per::kLowerBound by default. 2003-06-26 23:50 George Irwin * RDBC/odbc/ODBCPreparedStatement.cxx: Backport late commit to R0.20.0: Comment out unused parameter to eliminate warning. Bug fix from David Morrison via Valeriy Onuchin: > Hi Valery, > Thanks for the pointer - I'm getting closer to having things work. > I did notice one odd thing, though. In the method > ODBCPreparedStatement::SetBinaryStream, you stream the guts of a > TBuffer to the database. The operative lines read: > > Int_t xl = x->BufferSize()>length ? length : x->BufferSize(); > std::istringstream* s = new std::istringstream(x->Buffer()); > imp->setBinaryStream( parameterIndex,(std::istream *)s,xl ); > > which relies on an implicit conversion of the char* contents of Buffer > to a std::string. The problem is that any \0 chars in the Buffer will > prematurely terminate the conversion. I replaced these lines with > > Int_t xl = x->BufferSize()>length ? length : x->BufferSize(); > std::string a(x->Buffer(),xl); > std::istream* s = new std::istringstream(a); > imp->setBinaryStream( parameterIndex,s,xl ); > > and now I get objects in the database of a size that I expect. > Cheers, > Dave 2003-06-26 23:43 George Irwin * RDBC/odbc/ODBCPreparedStatement.cxx: Comment out unused parameter to eliminate warning. 2003-06-26 23:39 George Irwin * RDBC/odbc/ODBCPreparedStatement.cxx: Bug fix from David Morrison via Valeriy Onuchin: > Hi Valery, > Thanks for the pointer - I'm getting closer to having things work. > I did notice one odd thing, though. In the method > ODBCPreparedStatement::SetBinaryStream, you stream the guts of a > TBuffer to the database. The operative lines read: > > Int_t xl = x->BufferSize()>length ? length : x->BufferSize(); > std::istringstream* s = new std::istringstream(x->Buffer()); > imp->setBinaryStream( parameterIndex,(std::istream *)s,xl ); > > which relies on an implicit conversion of the char* contents of Buffer > to a std::string. The problem is that any \0 chars in the Buffer will > prematurely terminate the conversion. I replaced these lines with > > Int_t xl = x->BufferSize()>length ? length : x->BufferSize(); > std::string a(x->Buffer(),xl); > std::istream* s = new std::istringstream(a); > imp->setBinaryStream( parameterIndex,s,xl ); > > and now I get objects in the database of a size that I expect. > Cheers, > Dave 2003-06-26 22:32 George Irwin * RecoBase/AlgTrack.cxx: Backport late commit to R0.20.0: Add half plane of iron to begin and end of track in range calculation (previously one full plane at each end). 2003-06-26 22:27 George Irwin * RecoBase/AlgTrack.cxx: Committed for Roy: Add half plane of iron to begin and end of track in range calculation (previously one full plane at each end). 2003-06-26 21:16 Robert Hatcher * BField/BfldMeshVoronoi.cxx: minor formatting tweak. 2003-06-26 21:12 Robert Hatcher * BField/: BfldMapRect2d.cxx, BfldMapRect2d.h: use information found in file header to determine the coil current used in generating the map. For now assume all such maps were generated with mu+ focussed (thus introduce a -1 to fGeneratedCoilCurrent). remove GetBField() method as this should be handled (uniformly) by the parent BfldMap class -- this deals with chemistry and current corrections to the map and (in principle) should not depend on underlying representation (2dRec vs. Voronoi). add comment line to member variable declarations. convert from using TString.h to STL 2003-06-26 21:09 Robert Hatcher * BField/: BfldMap.cxx, BfldMap.h: make simple set/get's inlined; add get methods for {Generated}CoilCurrent. add comment to member variable declaration. 2003-06-26 21:05 Robert Hatcher * BField/BField.cxx: until a database table can supply appropriate info set the coil current to the abs() of the coil current used in generating the map. 2003-06-26 21:04 Robert Hatcher * BField/BField.h: minor comment improvement. 2003-06-26 21:02 Robert Hatcher * BField/BfldLoanPool.cxx: remove unused global config variable 2003-06-26 20:55 Robert Hatcher * BField/: BfldMapVoronoi.cxx, BfldMapVoronoi.h, BfldMeshVoronoi.cxx, BfldMeshVoronoi.h: change from using TString.h to STL 2003-06-26 20:53 Robert Hatcher * BField/BfldLoanPool.cxx: document settable parameters. 2003-06-26 20:52 Robert Hatcher * BField/BfldCache.cxx: document interpretation of values of InZTest 2003-06-26 19:43 George Irwin * CandEventSR/EventSRListModule.cxx: Backport late commit to R0.20.0: Add protection to evthdr.plane filling code to protect against occasionally accessing array out of bounds. 2003-06-26 19:39 George Irwin * CandNtupleSR/: Module/NtpSRModule.cxx, macro/compareNtuple.C: Backport late commits to R0.20.0: Add protection to filling code of evthdr.plane data member to protect against array being accessed out of bound. Move mainbranch->SetAddress call to within loop that retrieves tree entries. Perhaps this will help with the segv problem Robert is reporting he observes on his platform. 2003-06-26 03:50 Sue Kasahara * CandNtupleSR/macro/compareNtuple.C: move mainbranch->SetAddress call to within loop that retrieves tree entries. Perhaps this will help with the segv problem Robert is reporting he observes on his platform. 2003-06-25 21:40 Robert Hatcher * DatabaseTables/UgliTables/: UgliDbiScintMdl.align_SM1, UgliDbiScintMdlVld.align_SM1, UgliDbiScintPln.align_SM1, UgliDbiScintPlnVld.align_SM1, load_scintmdl.mysql, load_scintpln.mysql: new "7" series data for 'aligned' SM1 * overall systematic rotation of ScintPln for all U's and all V's * individual TPos shifts for ScintMdl's data generated by Bernie Becker, Vld's abused by rhatcher to make both use series 7 and SEQNO's (aggregate # = plane) have start times that depend on the plane (and match what is used by UgliDbiSteelPln) which allows early construction VldContext's to not have to pull as much data. 2003-06-25 21:34 Robert Hatcher * DatabaseTables/UgliTables/: load_steelpln.mysql, load_strip.mysql: really wipe stuff we're about to load (was missing new stuff in some cases). 2003-06-25 20:27 Liz Buckley-Geer * WebDocs/alan_tips.html: Fixed link to offline web area 2003-06-25 15:54 Robert Hatcher * Calibrator/CalTimeCalibration.h: provide default initializers for data members to default ctor. 2003-06-25 15:53 Robert Hatcher * Calibrator/TimeCalibrator.cxx: limit (to 100) the number of messages if CalMode=0. 2003-06-25 11:25 weber * Contrib/weber/AnaMC/: AnaMC.cxx, AnaMC.h, CCNCFit.C, CCNCFit.h: some updates on AnaMC added new macro CCNCFit to fit for nu oscillations 2003-06-25 04:10 Sue Kasahara * CandEventSR/EventSRListModule.cxx: Add protection to evthdr.plane filling code to protect against occasionally accessing array out of bounds. 2003-06-25 04:06 Sue Kasahara * CandNtupleSR/Module/NtpSRModule.cxx: Add protection to filling code of evthdr.plane data member to protect against array being accessed out of bound. 2003-06-24 22:03 Robert Hatcher * DatabaseTables/UgliTables/UgliDbiSteelPlnVld.far_249data: fill in VLD entries for series "7" that were somehow munged (missing for planes 258-497) just for completeness and to avoid future confusion. Series "8" will take precedence anyway. 2003-06-24 21:58 Robert Hatcher * DatabaseTables/UgliTables/: UgliDbiScintMdlVld.far_249data, UgliDbiScintPlnVld.far_249data, UgliDbiStripVld.far_249data: remove VLD entries for FarDet planes 0 & 249 (which have no scintillator and thus no actual data entries). 2003-06-24 20:47 Ed Larty * setup/: myrel, mytmp, setup_minossoft_tamu: # modified for new rules in frozen release 2003-06-24 19:34 George Irwin * CandNtupleSR/Module/: NtpSRModule.cxx, NtpSRModule.h: Backport late commit from Sue to R0.20.0: Bug fix and clean up filling of ntuple shield strip data. Ordering of shield strip data in TClonesArray now matches that of eventsr.root to make cross-checks of old to new ntuple records easier. 2003-06-24 18:04 Brian Rebel * CandTrackSR/AlgTrackSRList_br.cxx: use flag from LinearFit class 2003-06-24 17:42 Brian Rebel * CandTrackSR/: AlgTrackSRList_br.cxx, AlgTrackSRList_br.h, HoughViewSR.cxx, HoughViewSR.h, LinkDef.h, Track2DSR.cxx, Track2DSR.h, TrackClusterSR.cxx, TrackClusterSR.h: add modified version of AlgTrackSRList as AlgTrackSRList_br. AlgTrackSRList is still the default for the track finding algorithm. modify TrackClusterSR, HoughViewSR to use with AlgTrackSRList_br by adding methods Track2DSR::IsBad() - flag for if a track should not be used TrackClusterSR::IsWide() - flag for a wide cluster TrackClusterSR::InShowerLikePlane() - flag for if a cluster comes from a showerlike plane also added the associated set methods for the above methods HoughViewSR::SetStripList(CandStripHandleItr, Double) - method which takes an iterator over strips and fills the list data member the above additions do not affect the current AlgTrackSRList 2003-06-24 02:50 Sue Kasahara * CandNtupleSR/Module/: NtpSRModule.cxx, NtpSRModule.h: Bug fix and clean up of filling of ntuple shield strip data. Ordering of shield strip data in TClonesArray now matches that of eventsr.root to make cross-checks of old to new ntuple records easier. 2003-06-23 21:25 Brett Viren * WebDocs/release-overview.html: first commit 2003-06-23 16:44 Ed Larty * OfflineMonitor/: NtpSR.C, NtpSR.h, README, myscript, offmacro_ntpsr.C, plotsmacro_ntpsr.C, plotsmacrotxt_ntpsr.C, reco.C: added new files to allow reading of Sue's Ntpsr files and also modified figure of merit cut on chi2 2003-06-23 16:34 Ed Larty * OfflineMonitor/: NtpSR.C, README, myscript, plotsmacro_ntpsr.C, reco.C, textfile.f: # added new file also modified cut on fitted chi2 2003-06-23 00:42 kordosky * CalDetDST/: LinkDef.h, UberPlotsModule.cxx, UberPlotsModule.h, macros/read_uber.C, macros/simple_mc_udst.C, macros/uber_plots.C: Added UberPlotsModule to fill histograms from UberRecords 2003-06-21 18:35 Ed Larty * OfflineMonitor/: NtpSR.C, NtpSR.h, myscript, offmacro_ntpsr.C, plotsmacrotxt_ntpsr.C, reco.h: # added new files to read and compare Sue's NtpSR files 2003-06-21 00:45 kordosky * CalDetPID/: AlgCalDetPID.cxx, CandCalDetPIDHandle.cxx: Added support for mc, no longer using cosmic counters in overlap decision, better printing by CandCalDetPIDHandle 2003-06-20 23:08 Robert Hatcher * Persistency/: PerStreamManager.cxx, PerStreamManager.h: make args on Print() method exactly match for doxygen. remove redundant const modifying Option_t (:= const char). 2003-06-20 23:02 Robert Hatcher * AtNuReco/CandShowerAtNuListHandle.cxx, CalDetPID/CandCalDetPIDHandle.cxx, CandFitTrack3/CandFitTrack3Handle.cxx, CandFitTrack3/CandFitTrack3ListHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 22:59 Robert Hatcher * AltDeMux/AlgAltDeMuxBase.cxx: synch declaration and definition of methods to either use int or Int_t but not one in each place (otherwise possible mismatch on machines where default int is not 32bits; also doxygen can't make the connection). 2003-06-20 22:47 kordosky * CalDetSI/: AlgCalDetSI.cxx, Cutter.cxx: AlgCalDetSI: Commented out some messages which can never be called, fixed a compiler warning. Cutter: fixed a compiler warning 2003-06-20 22:23 Robert Hatcher * DatabaseInterface/DbiString.cxx: save file before committing next time. 2003-06-20 22:15 Robert Hatcher * Validity/VldTimeStamp.h: const modifying Option_t was superflous (Option_t := const char*) and mismatch between declaration and definition confused doxygen 2003-06-20 22:11 Robert Hatcher * Record/SimSnarlHeader.cxx: const modifying Option_t was superflous (Option_t := const char*) and mismatch between declaration and definition confused doxygen 2003-06-20 22:09 Robert Hatcher * RecoBase/: CandClusterHandle.cxx, CandClusterListHandle.cxx, CandEventHandle.cxx, CandEventListHandle.cxx, CandFitTrackHandle.cxx, CandFitTrackListHandle.cxx, CandRecoHandle.cxx, CandRecoListHandle.cxx, CandShowerHandle.cxx, CandShowerListHandle.cxx, CandSliceHandle.cxx, CandSliceListHandle.cxx, CandStripHandle.cxx, CandStripListHandle.cxx, CandTrackHandle.cxx, CandTrackListHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 21:54 Ed Larty * OfflineMonitor/: EvtmonListModule.cxx, myscript: # changed name of output file from eventsr.root to myeventsr.root to prevent overwriting 2003-06-20 21:52 Robert Hatcher * RawData/: RawCrateStatus.h, RawLIHeader.h: const modifying Option_t was superflous (Option_t := const char*) and mismatch between declaration and definition confused doxygen 2003-06-20 21:47 Robert Hatcher * RDBC/mysql/MySQLResultSet.cxx: Print() method is const to be consistent with interface 2003-06-20 21:38 Robert Hatcher * Persistency/PerStreamManager.cxx: don't bother qualifying ostream with std:: in definition if header has "using namespace std;" and doesn't use std:: in the declaration of Print(). 2003-06-20 21:34 Robert Hatcher * NumericalMethods/NmStepperRKCK.cxx: args of RKCKStep were declared as double* x, don't use x[] in definition (doxygen complains about lack of an exact match). 2003-06-20 21:28 Robert Hatcher * LISummary/morse/Gryfindor/detector/chip.cxx: definition of Clean() method was double qualified with class name 2003-06-20 21:24 Robert Hatcher * DatabaseInterface/DbiWriter.cxx: qualify string with std:: in definition's args to match exactly declaration (otherwise doxygen complains). 2003-06-20 21:21 Robert Hatcher * DatabaseInterface/DbiString.cxx: qualify string with std:: in definition's args to match exactly declaration (otherwise doxygen complains). 2003-06-20 21:17 Robert Hatcher * DatabaseInterface/Dbi.cxx: qualify string with std:: in definition's args to match exactly declaration (otherwise doxygen complains). 2003-06-20 21:13 Robert Hatcher * CandTrackSR/TrackSRListModule.h: synch declaration and definition of IsCosmic() method to either use int or Int_t but not one in each place 2003-06-20 21:09 Robert Hatcher * CandStripSR/CandStripSRHandle.cxx, CandStripSR/CandStripSRListHandle.cxx, CandTrackSR/CandTrackSRHandle.cxx, CandTrackSR/CandTrackSRListHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 21:05 Robert Hatcher * CandFitTrackSR/CandFitTrackSRHandle.cxx, CandFitTrackSR/CandFitTrackSRListHandle.cxx, CandShowerSR/CandShowerSRHandle.cxx, CandShowerSR/CandShowerSRListHandle.cxx, CandSliceSR/CandSliceSRHandle.cxx, CandSliceSR/CandSliceSRListHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 21:02 Robert Hatcher * CandEventSR/CandEventSRHandle.cxx, CandEventSR/CandEventSRListHandle.cxx, CandFitTrackMS/CandFitTrackMSHandle.cxx, CandFitTrackMS/CandFitTrackMSListHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 21:01 Robert Hatcher * CandEventSR/EventSRListModule.h: synch declaration and definition of SetCosmic() method to either use int or Int_t but not one in each place. 2003-06-20 20:57 Robert Hatcher * CandDigit/: CandDeMuxDigitHandle.cxx, CandDeMuxDigitListHandle.cxx, CandDigitHandle.cxx, CandDigitListHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 20:53 Robert Hatcher * CandClusterSR/: CandClusterSRHandle.cxx, CandClusterSRListHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 20:50 Robert Hatcher * Calibrator/: MIPCalibrator.h, MuonSigCorrCalibrator.cxx, MuonSigCorrCalibrator.h, PulserSigLinCalibrator.cxx, PulserSigLinCalibrator.h, SigMappedCalibrator.cxx, SigMappedCalibrator.h: synch declaration and definition of ctor's to either use int or Int_t but not one in each place. The two are (in general (ie. on 32 bit machines)) identical but doxygen doesn't know that. 2003-06-20 20:49 Robert Hatcher * Calibrator/StripCalibrator.cxx: reorder initializations to match declaration order (remove warning). add initialization of fDefault{MIPper|SigmMapper}SigCorr values to second version of ctor to ensure that the get set at some point. 2003-06-20 20:38 Robert Hatcher * CalDetSI/Helpers.h: ComputeSine was qualified with the namespace a 2nd time in the declaration 2003-06-20 20:19 Robert Hatcher * CalDetSI/CandCalDetSIHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 20:14 Robert Hatcher * AtNuReco/CandShowerAtNuHandle.cxx, AtNuReco/CandTrackAtNuHandle.cxx, AtNuReco/CandTrackAtNuListHandle.cxx, BubbleSpeak/CandThruMuonListHandle.cxx: implementation of DupHandle method was doubly qualified by class name 2003-06-20 19:32 George Irwin * Demo/DemoEventDump.cxx: Late commit by Kasahara backported to R0.20.0: Modify EventDump so that it recognizes records of base type RecRecord. Print filename along with stream,index of record origin. 2003-06-20 19:28 George Irwin * Persistency/: Per.cxx, Per.h, PerInputStream.cxx, PerInputStream.h, PerInputStreamManager.cxx, PerInputStreamManager.h: Late commit by Kasahara backported to R0.20.0: Add support for sequencing data records from input streams of type Per::kLowerBound and Per::kKey. Records across Per::kKey streams (default) are sequenced and synchronized by vldcontext as they were before the current change. Streams defined by the user as Per::kLowerBound are sequenced relative to the Per::kKey streams, such that the record set on the lowerbound stream with vldcontext just less than or equal to the key stream(s) vldcontext will be loaded into Mom along with the key stream(s) record set. 2003-06-20 19:24 George Irwin * IoModules/: IoDataStreamItr.cxx, IoDataStreamItr.h, IoInputModule.cxx, IoInputModule.h, IoInputStreamItr.cxx, IoInputStreamItr.h: Late commit by Kasahara backported to R0.20.0: Add support for user-specified sequence mode (Per::kKey or Per::kLowerBound) for input data streams. 2003-06-20 19:19 George Irwin * JobControl/: JobCInput.cxx, JobCInput.h, JobCInputModule.cxx, JobCInputModule.h: Late commit by Kasahara backported to R0.20.0: Add method void SetSequenceMode(const char* stream, Per::ESequenceMode seqmode=Per::kKey); to JobCInputxxx classes to support user specified sequence mode for input data streams. 2003-06-20 19:04 George Irwin * Persistency/PerOutputStream.cxx: Late commit by Kasahara backported to R0.20.0: Make name of top level branch the same as the classname of the record to be stored there, even when the record class inherits from RecRecordImp. 2003-06-20 19:00 George Irwin * CandNtupleSR/Module/NtpSRModule.cxx: Late commit by Kasahara backported to R0.20.0: Fix to filling of linear fit slope/intercept when LinearFit::Weighted has not been called, due to too few track points. 2003-06-20 18:56 George Irwin * CandEventSR/EventSRListModule.cxx: Late commit by Kasahara backported to R0.20.0: Fix filling of bool dmxstatus words. Also initialize linear fit slopes/intercepts to 0 so that when LinearFit::Weighted is not called, these words don't contain garbage. 2003-06-20 16:19 Robert Hatcher * WebDocs/doxygen/loon.doxygen: add new packages that are part of the development release: AltDeMux, CandDetPID, CandFitTrack3, EventDisplay, StupidGeometry, TriD. 2003-06-19 16:25 Robert Hatcher * BField/BfldMapRect2d.cxx: kludgey fix to wrong sign (coil current reversed in generated maps) put this in on the branch used for R0.20.0, but not on the HEAD -- the main development with get this done right so that we use a Dbi table to determine the when magnet coils are on/off/reversed. 2003-06-18 21:20 Brett Viren * WebDocs/: external_products.html, msrt.html: e_p.html: note dCache is optional. Make clear that one goes to the RECOMMENDED/ area for the tar file, not to DESY. Both points were confusing people. msrt.html: fix a couple of links fixed long ago but forgot to commit. 2003-06-16 22:46 Sue Kasahara * Persistency/PerOutputStream.cxx: Make name of top level tree branch the same as the classname of the record to be stored there, even when the record class inherits from RecRecordImp. 2003-06-15 22:57 Sue Kasahara * CandNtupleSR/Module/NtpSRModule.cxx: Fix to filling of linear fit slope/intercept when LinearFit::Weighted has not been called, due to too few track points. 2003-06-15 22:47 Sue Kasahara * CandEventSR/EventSRListModule.cxx: Fix filling of bool dmxstatus words. Also initialize linear fit slopes/intercepts to 0 so that when LinearFit::Weighted is not called, these words don't contain garbage. 2003-06-15 11:51 Nick West * DatabaseMaintenance/: doc/ChangeLog, doc/db_distribution.html, scripts/primer.pm, scripts/primer/launch.csh, scripts/primer/launch.sh: Add base release name to local.config with a default of development. 2003-06-14 20:23 Nathaniel Tagg * TriD/TridUVPage.cxx: Removed a floating point exception occouring when event is empty. (Yah, that one was obvious! Who wants to view empty snarls? Me, apparently.) 2003-06-14 17:00 Nathaniel Tagg * DetSim/: SimDetector.cxx, SimPmtDecalibrator.cxx, SimVaElectronics.cxx, SimVaElectronics.h, macros/detsim.C: Added attempt at adding time window to VARC pre-trigger. Results look right but have not been vigerously tested. 2003-06-14 03:12 bspeak * DatabaseTables/PlexTables/far_data_shield.mysql: Section 3 entered and section 2 reentered. 2003-06-14 03:10 bspeak * DatabaseTables/PlexTables/far_data_sm2.mysql: Final planes of SM2, and one earlier fix with 1204. 2003-06-13 19:52 Nick West * DatabaseMaintenance/scripts/primer/launch.csh: Fix broken test that this is a checksum job, so can be run in parallel whith other jobs. 2003-06-13 15:36 George Irwin * Persistency/PerOutputStream.cxx: Backport ROOT kludge to R0.20.0 2003-06-13 15:00 George Irwin * RecoBase/AlgTrack.cxx: Backport late bug fix to R0.20.0. 2003-06-13 02:23 Roy Lee * RecoBase/AlgTrack.cxx: Fix bug in which path length at vertex was not being set for backward going tracks. 2003-06-12 03:06 Sue Kasahara * CandNtupleSR/: LinkDef.h, NtpSRMCTruth.cxx, NtpSRMCTruth.h, NtpSRStdHep.cxx, NtpSRStdHep.h: Add monte carlo ntuple classes, although these aren't filled yet. 2003-06-12 02:24 Sue Kasahara * Demo/DemoEventDump.cxx: Print filename along with stream,index of record origin. 2003-06-12 02:22 Sue Kasahara * Persistency/: Per.cxx, Per.h, PerInputStream.cxx, PerInputStream.h, PerInputStreamManager.cxx, PerInputStreamManager.h: Add support for sequencing data records from input streams of type Per::kLowerBound and Per::kKey. Records across Per::kKey streams (default) are sequenced and synchronized by vldcontext as they were before the current change. Streams defined by the user as Per::kLowerBound are sequenced relative to the Per::kKey streams, such that the record set on the lowerbound stream with vldcontext just less than or equal to the key stream(s) vldcontext will be loaded into Mom along with the key stream(s) record set. 2003-06-12 02:13 Sue Kasahara * IoModules/: IoDataStreamItr.cxx, IoDataStreamItr.h, IoInputModule.cxx, IoInputModule.h, IoInputStreamItr.cxx, IoInputStreamItr.h: Add support for user-specified sequence mode (Per::kKey or Per::kLowerBound) for input data streams. 2003-06-12 02:12 Sue Kasahara * JobControl/: JobCInput.cxx, JobCInput.h, JobCInputModule.cxx, JobCInputModule.h: Add method void SetSequenceMode(const char* stream, Per::ESequenceMode seqmode=Per::kKey); to JobCInputxxx classes to support user specified sequence mode for input data streams. 2003-06-11 22:56 George Irwin * setup/packages-development: Add AltDeMux package. 2003-06-11 22:54 George Irwin * CVSROOT/: check_access, modules: Add AltDeMux package, writable by thomson and howcroft. 2003-06-11 22:49 George Irwin * AltDeMux/: .cvsignore, AlgAltDeMuxBase.cxx, AlgAltDeMuxBase.h, AlgAltDeMuxDevel.cxx, AlgAltDeMuxDevel.h, AlgAltDeMuxFast.cxx, AlgAltDeMuxFast.h, AlgAltDeMuxStandard.cxx, AlgAltDeMuxStandard.h, AlgAltDeMuxStraw.cxx, AlgAltDeMuxStraw.h, AltDeMuxCalc.cxx, AltDeMuxCalc.h, AltDeMuxDisplay.cxx, AltDeMuxDisplay.h, AltDeMuxModule.cxx, AltDeMuxModule.h, AltDeMuxPatternMaster.cxx, AltDeMuxPatternMaster.h, AltDeMuxStructures.h, DBtxt_AlgAltDeMuxDevel_default.C, DBtxt_AlgAltDeMuxStraw_default.C, GNUmakefile, LinkDef.h, MyAna.cxx, MyAna.h, MyAnaX.cxx, MyAnaX.h, MyVeto.cxx, MyVeto.h, altdemux.C, reco.C, recoM.C, saltdemux.C, stuff.h: Initial AltDeMux package commit 2003-06-11 22:49 George Irwin * AltDeMux/: .cvsignore, AlgAltDeMuxBase.cxx, AlgAltDeMuxBase.h, AlgAltDeMuxDevel.cxx, AlgAltDeMuxDevel.h, AlgAltDeMuxFast.cxx, AlgAltDeMuxFast.h, AlgAltDeMuxStandard.cxx, AlgAltDeMuxStandard.h, AlgAltDeMuxStraw.cxx, AlgAltDeMuxStraw.h, AltDeMuxCalc.cxx, AltDeMuxCalc.h, AltDeMuxDisplay.cxx, AltDeMuxDisplay.h, AltDeMuxModule.cxx, AltDeMuxModule.h, AltDeMuxPatternMaster.cxx, AltDeMuxPatternMaster.h, AltDeMuxStructures.h, DBtxt_AlgAltDeMuxDevel_default.C, DBtxt_AlgAltDeMuxStraw_default.C, GNUmakefile, LinkDef.h, MyAna.cxx, MyAna.h, MyAnaX.cxx, MyAnaX.h, MyVeto.cxx, MyVeto.h, altdemux.C, reco.C, recoM.C, saltdemux.C, stuff.h: Initial revision 2003-06-11 22:35 Sue Kasahara * Demo/DemoEventDump.cxx: Modify EventDump so that it recognizes records of base type RecRecord. 2003-06-11 20:19 Robert Hatcher * OnlineUtil/minosDaq.h: sync with online repository change of 2003-06-03. 2003-06-10 23:21 George Irwin * FilterDigitSR/: AlgFilterDigitListSR.cxx, macros/DBtxt_AlgFilterDigitListSR_default.C: Backport late commit to R0.20.0 branch. 2003-06-10 20:00 Roy Lee * FilterDigitSR/: AlgFilterDigitListSR.cxx, macros/DBtxt_AlgFilterDigitListSR_default.C: New parameters modifiable by user: acd.Set("ShieldMode", 0); // 0 = do not filter // 1 = filter out of time // 2 = filter all shield digits acd.Set("TriggerWindow", 100.); // in nanoseconds acd.Set("PreReadoutWindow", 50.); // in nanoseconds acd.Set("PostReadoutWindow", 150.); // in nanoseconds By default, all veto shield digits are written out to the filtered list. 2003-06-10 19:50 musser * EventDisplay/: DisplayOptions.cxx, DisplayOptions.h: Dialog box method for event display 2003-06-10 19:20 musser * EventDisplay/: EVD.C, EVD.cxx, EVD.h, GNUmakefile, GfxDigit.cxx, GfxDigitList.cxx, GfxShower.cxx, GfxTrack.cxx, GfxTrackList.cxx, LinkDef.h: Upgrade, adding the following features: 1: Display options dialog box, allowing access to... auto-scaling or fixed range charge color palette. choice of charge type (raw, PE, siglin,...) enable/disable display of veto shield strip locations in XY view 2: for far detector data, veto shield hits are now displayed 2003-06-10 10:01 Nick West * DatabaseMaintenance/: doc/ChangeLog, scripts/exporter.pm, scripts/report.pm: Cosmetic improvement to mail subject line. 2003-06-10 09:20 rjn * PEGain/PEGainModule.cxx: Fixed floating point error in PEGainModule 2003-06-09 23:46 Ed Larty * OfflineMonitor/reco.h: # should work on monte-carlo file 2003-06-09 19:44 George Irwin * CandNtupleSR/: Module/NtpSRModule.cxx, macro/testNtpSRFilterModule.C, macro/testNtpSRModule.C: Backport late commits to R0.20.0 for production. 2003-06-09 03:17 Sue Kasahara * CandNtupleSR/Module/NtpSRModule.cxx: Fix bug in setting of evthdr.plane.* as recently was introduced to EventSRListModule.cxx 2003-06-09 02:46 Sue Kasahara * CandNtupleSR/macro/: testNtpSRFilterModule.C, testNtpSRModule.C: Request ntuple trees to be split at default level (99) again, after recent root fix to i/o problem. 2003-06-09 02:00 Sue Kasahara * Persistency/PerOutputStream.cxx: Add the following lines to PerOutputStream::SetFile(...) after file has been opened and tree has been created: // Autosave immediately to avoid the situation in which the open file // has basket dumps but no keys which would produce an error during the // read of the open file. fTTree -> AutoSave(); // save tree to file fTFile -> SaveSelf(); // save file directory containing this tree This should solve the incompatibility problem between root version 3.04/02 and the dispatcher/rotorooter system. (There is still a problem with root versions more recent than 2003-03-01 and the dispatcher/rotorooter system.) 2003-06-08 18:14 Ed Larty * setup/: packages-R0.20.0-tmp, setup_minossoft_tamu: # remove obsolete packages 2003-06-07 17:39 Ed Larty * OfflineMonitor/: EvtmonListModule.cxx, EvtmonListModule.h: # corrected for bug 2003-06-07 17:27 Ed Larty * OfflineMonitor/: EvtmonListModule.cxx, EvtmonListModule.h: # corrected bug 2003-06-07 17:14 Ed Larty * OfflineMonitor/: EvtmonListModule.cxx, EvtmonListModule.h: # added changes 2003-06-07 17:03 Ed Larty * OfflineMonitor/EvtmonListModule.h: # added more functions 2003-06-07 15:46 Ed Larty * OfflineMonitor/reco.h: # merged head with tag version 2003-06-07 15:43 Ed Larty * OfflineMonitor/reco.h: # added new variable 2003-06-07 11:54 hartnell * LISummary/LIAnalysis.cxx: Only minor changes Fixed adcvsled histo titles Now print whole detector plots to ps 2003-06-07 09:02 hartnell * LISummary/Gryfindor.C: Obsolete macro 2003-06-07 08:53 hartnell * LISummary/: LIAna.C, LIAnalysis.cxx, LIAnalysis.h, LILookup.cxx, LIRun.cxx, LIRun.h, LITune.C, LITuning.cxx, LITuning.h: Added Reflectors() to LIAnalysis for looking at the effect of the reflector connectors installed at CalDet. Not complete yet Fixed a bug in LITuning that I created by changing the GetX functions in LIRun 2003-06-06 21:33 George Irwin * CandTrackSR/TrackSRListModule.cxx, CandShowerSR/ShowerSRListModule.cxx, CandEventSR/EventSRListModule.cxx: Merge fixed version onto frozen R0.20.0 branch. 2003-06-06 21:26 George Irwin * CandTrackSR/TrackSRListModule.cxx: Redo modifications to version 1.42 for Jim's subsequent changes. 2003-06-06 21:00 Ed Larty * CandTrackSR/AlgTrackSRList.cxx: # merged changes in HEAD into frozen version 2003-06-06 20:56 George Irwin * CandShowerSR/ShowerSRListModule.cxx: Redo modification to version 1.22 for Jim's subsequent changes. 2003-06-06 20:54 Ed Larty * RecoBase/: LinearFit.cxx, LinearFit.h: # merged changes in HEAD version into tagged branch for frozen release R0.20.0 2003-06-06 20:45 Ed Larty * OfflineMonitor/README: # tested cvs stuff 2003-06-06 20:33 Ed Larty * OfflineMonitor/README: # added a comment 2003-06-06 20:28 Roy Lee * CandEventSR/EventSRListModule.cxx: Minor bug fix in calculation of evthdr.plane* variables. 2003-06-06 20:21 George Irwin * CandEventSR/EventSRListModule.cxx: Try to get back to a working version. Go back and modify version 1.77 for Jim's changes. Roy will then overlay his subsequent bug fix. 2003-06-06 18:27 Roy Lee * CandTrackSR/AlgTrackSRList.cxx: In initial time fit to determine direction of event, check if fit successful. If unsuccessful, assume that event is forward going in z. 2003-06-06 18:26 Roy Lee * RecoBase/: LinearFit.cxx, LinearFit.h: Return 0 if successful, 1 otherwise. 2003-06-06 16:46 musser * CandTrackSR/TrackSRListModule.cxx: move registry stuff back to default config 2003-06-06 16:44 musser * CandShowerSR/ShowerSRListModule.cxx: move registry stuff to default-config 2003-06-06 16:42 musser * CandEventSR/EventSRListModule.cxx: move registry stuff back to default config 2003-06-06 15:51 Nathaniel Tagg * WebDocs/: WebDocs.html, detsim/DetSim_Documentation.html, detsim/mc_diagram.gif: Added DetSim to the WebDocs front page. Added DetSim documentation. 2003-06-06 15:14 Robert Hatcher * WebDocs/demojob_help.html: no longer relevant -- pre-loon. 2003-06-06 15:00 Ed Larty * Validation/macros/data_reco.C: # added a few more 2003-06-06 00:02 kordosky * CalDetPID/LoadCalDetPIDDB.cxx: Fixed bug preventing LoadCalDetPIDDB from working in base release 2003-06-05 23:46 bspeak * DatabaseTables/PlexTables/: far_data_shield.mysql, far_data_sm1.mysql, far_data_sm2.mysql: sm1:Fixed box with miss mapped fibers (1014) sm2:Fixed 2 boxes with miss mapped fibers (2502, 2504) shield:Fix some INSERTDATE entries 2003-06-05 19:57 kordosky * CalDetPID/LoadCalDetPIDDB.cxx: arghh 2003-06-05 19:42 Ed Larty * WebDocs/FrozenRel.html: # correct to properly show on website 2003-06-05 19:36 kordosky * CalDetPID/LoadCalDetPIDDB.cxx: arghh 2003-06-05 18:50 kordosky * CalDetPID/AlgCalDetPID.cxx: fixed a bug in AlgCalDetPID 2003-06-05 18:38 kordosky * CalDetPID/LoadCalDetPIDDB.cxx: fixed a bug in LoadCalDetPIDDB 2003-06-05 16:28 rjn * CandFitTrack3/FitTrack3ListModule.cxx: Just removed a couple of un-necessary includes. 2003-06-05 16:24 rjn * CandFitTrack3/: AlgFitTrack3.cxx, AlgFitTrack3.h, AlgFitTrack3List.cxx, AlgFitTrack3List.h, CandFitTrack3.cxx, CandFitTrack3.h, CandFitTrack3Handle.cxx, CandFitTrack3Handle.h, CandFitTrack3List.cxx, CandFitTrack3List.h, CandFitTrack3ListHandle.cxx, CandFitTrack3ListHandle.h, FitTrack3ListModule.cxx, FitTrack3ListModule.h, GNUmakefile, LinkDef.h, README, SwimObj3.cxx, SwimObj3.h: First time I have commited this package. At present it is semi-functional. Will hopefully work it's way towards being fully functional over the next couple of weeks. 2003-06-05 16:11 Mark Messier * CVSROOT/check_access, CVSROOT/modules, CandFitTrack3/.cvsignore, setup/packages-development: Start package CandFitTrack3 2003-06-05 09:30 Nick West * DatabaseMaintenance/scripts/exporter.pm: Add debug output. 2003-06-05 06:51 Nick West * DatabaseMaintenance/scripts/: ac_main.pm, exp_get_fixup.pm, exporter.pm: Add support for a non-invasive rebroadcasting scheme i.e. one that does not involve refreshing insert dates (which defeats roll-back). 2003-06-05 06:50 Nick West * DatabaseMaintenance/scripts/ac_split_streams.pm: Improve naming scheme for partial checksum reports to avoid involving independent reports with similar names. 2003-06-05 04:32 kordosky * CalDetDST/: UberModule.cxx, UberModule.h, UberRecord.cxx, UberRecord.h, macros/UberModtest.C, macros/uber_w_pid.C, macros/uber_w_pid.C~, macros/uber_w_pid_short.C: Added support for CalDetPID 2003-06-05 04:30 kordosky * CalDetPID/: LinkDef.h, NtpCalDetPID.cxx, NtpCalDetPID.cxx~, NtpCalDetPID.h, NtpCalDetPID.h~: added ntuple object ala sue k 2003-06-05 02:21 kordosky * CalDetPID/: bin/GNUmakefile, bin/LinkDef.h, bin/MakeBeamMomentumTable.cc, bin/MakeCERRangeTable.cc, bin/MakeCERTimeWinTable.cc, bin/MakeCERWinTable.cc, bin/MakeOverlapWinTable.cc, bin/MakeTOFRangeTable.cc, bin/ScanDbuSubRunSummary.cc, data/BeamMomentumTable.rawinput, data/CERRangeTable.rawinput, data/CERTimeWinTable.rawinput, data/OverlapWinTable.rawinput, data/README, data/TOFRangeTable.rawinput, data/beamp.dat, data/cerrange.dat, data/certime.dat, data/overlap.dat, data/tof_numbers.dat, macros/TestLoadCalDetDB.C, macros/TestPFModConfig.C, macros/TestPIDModule.C, test/GNUmakefile, test/LinkDef.h, test/TestBeamMomentum.cc, test/TestCERRange.cc, test/TestOverlapWin.cc, test/TestTOFRange.cc: more initial commit 2003-06-05 02:08 kordosky * CalDetPID/: AlgCalDetPID.cxx, AlgCalDetPID.h, CalDetBeamMomentum.cxx, CalDetBeamMomentum.h, CalDetCERRange.cxx, CalDetCERRange.h, CalDetCERTimeWin.cxx, CalDetCERTimeWin.h, CalDetOverlapWin.cxx, CalDetOverlapWin.h, CalDetParticleType.cxx, CalDetParticleType.h, CalDetTOFRange.cxx, CalDetTOFRange.h, CandCalDetPID.cxx, CandCalDetPID.h, CandCalDetPIDHandle.cxx, CandCalDetPIDHandle.h, GNUmakefile, LinkDef.h, LoadCalDetPIDDB.cxx, LoadCalDetPIDDB.h, ParticleFilterModule.cxx, ParticleFilterModule.h, README, RealCalDetPIDModule.cxx, RealCalDetPIDModule.h: initial import 2003-06-04 22:18 George Irwin * CandShowerSR/AlgShowerSRList.cxx: Late commits backported to R0.20.0: Fix pulse height asymmetry cut, previously was passing when should have been rejecting and vice versa. 2003-06-04 22:10 George Irwin * CandNtupleSR/: Module/NtpSRModule.cxx, macro/compareNtuple.C: Late commits backported to R0.20.0: a) compareNtuple.C: Clean up print statements. Only print one warning per tree leaf when types disagree, or corresponding leaf on second tree is missing. Add missing #include "TLeaf.h". b) NtpSRModule.cxx: Protect against divide by 0 error in filling of track momentum data members and fix filling of linear fit data. Fix debug level print statement. 2003-06-04 21:57 George Irwin * CandEventSR/EventSRListModule.cxx: Late commits backported to R0.20.0: a) Fill missing dmxstatus.avgtimeoffset data member now that this information is available through the DemuxDigitListHandle. b) Fix bug in setting evthdr.plane.* and evthdr.planeall.* if there were hits on channels that don't have a plane attached (i.e. GetPlane returns -1) due to x-talk or noise then it resets the min plane to -1. c) Move config to beginjob, and add MIP and SigMap mode 2003-06-04 21:25 Robert Hatcher * DatabaseTables/UgliTables/: UgliDbiScintMdl.far_veto, UgliDbiScintMdlVld.far_veto, UgliDbiScintPln.far_veto, UgliDbiScintPlnVld.far_veto, UgliDbiSteelPln.far_veto, UgliDbiSteelPlnVld.far_veto, UgliDbiStrip.far_veto, UgliDbiStripVld.far_veto: geometry info for vetoshield section 2 after 2003-04-17 when it was reconfigured from single to double layer. initial geometry for section 3. 2003-06-04 21:14 Robert Hatcher * DatabaseTables/PlexTables/: VetoShieldMuxToMdl.fardet, VetoShieldMuxToMdlVld.fardet: section 2 alternative for 2003-04-16 and beyond (changed from single layer to double layer); entries for sections 3 & 4. 2003-06-04 21:00 Roy Lee * CandEventSR/EventSRListModule.cxx: Fix minor bug, where evthdr.plane* variables are not correctly calculated if a CandDigit exists with plane<0. 2003-06-04 20:56 Roy Lee * CandShowerSR/AlgShowerSRList.cxx: Fix pulse height asymmetry cut, previously was passing when should have been rejecting and vice versa. 2003-06-04 17:44 musser * CandShowerSR/ShowerSRListModule.cxx: added back in config variables that I lost in the last commit 2003-06-04 17:22 musser * CandEventSR/EventSRListModule.cxx: move config to beginjob, and add MIP and SigMap mode 2003-06-04 17:20 musser * CandTrackSR/TrackSRListModule.cxx: move config to beginjob, and add MIP and SigMap mode setting 2003-06-04 17:17 musser * CandShowerSR/: AlgShowerSR.cxx, AlgShowerSR.h, ShowerSRListModule.cxx: move configuration to beginjob, and add loading of MIP and SigMap calibration m\ode settings 2003-06-04 17:02 musser * Calibrator/: DigitCalibrator.cxx, DigitCalibrator.h, MIPCalibrator.cxx, MuonSigCorrCalibrator.cxx, PEGainCalibrator.cxx, SigMappedCalibrator.cxx, StripCalibrator.cxx, StripCalibrator.h, TimeCalibrator.cxx: added calibration mode -1 to all calibration types. This allows a complete bypass of dB table loading and access, and applies more or less reasonable default 'calibration' constants. 2003-06-04 16:57 musser * EventDisplay/: EVD.C, EVD.cxx: window resize when opening text pane fixed 2003-06-04 16:55 Nick West * DatabaseMaintenance/doc/db_distribution.html: Try to make a bit more "Slave site installer" friendly following comments by Jon. 2003-06-04 16:43 Nick West * WebDocs/WebDocs.html: Add a link to DBMauto installation into the Installation section. 2003-06-04 16:04 Robert Hatcher * Loon/gminos_to_eventsr.C: Add EventDump::Ana *after* RerootTo{RawData|Truth}Module::Get so that there are actual records in MOM when it is called. 2003-06-04 15:28 Mark Messier * setup/packages-development: Add CalDetPID 2003-06-04 15:27 Mark Messier * CalDetPID/.cvsignore: Start package off 2003-06-04 15:13 Mark Messier * CVSROOT/: check_access, modules: Add CalDetPID 2003-06-04 03:52 Sue Kasahara * CandNtupleSR/Module/NtpSRModule.cxx: Protect against divide by 0 error in filling of track momentum data members and fix filling of linear fit data. Fix debug level print statement. 2003-06-04 01:59 Sue Kasahara * CandNtupleSR/macro/compareNtuple.C: Clean up print statements. Only print one warning per tree leaf when types disagree, or corresponding leaf on second tree is missing. Add missing #include "TLeaf.h". 2003-06-04 01:02 Sue Kasahara * CandEventSR/EventSRListModule.cxx: Fill missing dmxstatus.avgtimeoffset data member now that this information is available through the DemuxDigitListHandle. 2003-06-03 17:20 Ed Larty * setup/packages-R0.20.0: # Reversed CandTrackSR to previous tag V00-06-08 2003-06-03 16:56 Ed Larty * setup/packages-R0.20.0: # tagged CANDTRACKSR to V00-06-09 from HEAD and included in this release in view of floating errors and roy's recent update 2003-06-03 15:14 kordosky * CalDetDST/: GNUmakefile, LinkDef.h, UberDST.cxx, UberHeader.cxx, UberModule.cxx, UberModule.h, UberRecHeader.cxx, UberRecHeader.h, UberRecord.cxx, UberRecord.h: New UberDST with SR reco variables. 2003-06-03 06:37 Nick West * DatabaseMaintenance/doc/Help.txt: The --File prefix can omly be omitted on the import command in the table option precedes it. 2003-06-02 22:39 Robert Hatcher * CVSROOT/check_access: add "gallag" as yet-another-alternative for Hugh Gallagher 2003-06-02 22:35 Robert Hatcher * CVSROOT/check_access: Hugh is known as "gallaghr" as well as "gallagher" 2003-06-02 22:18 George Irwin * CandNtupleSR/Module/NtpSRModule.cxx: Commit this late change to R0.20.0 branch. 2003-06-02 22:07 George Irwin * CandFitTrackSR/AlgFitTrackSR.cxx: Add this late change to R0.20.0. 2003-06-02 22:03 George Irwin * CandTrackSR/AlgTrackSR.cxx: Commit this late change to R0.20.0 branch. 2003-06-02 21:15 Ed Larty * setup/packages-R0.19.0-tmp: # not needed 2003-06-02 19:33 hartnell * LISummary/LISummarySorter.cxx: Removed the nasty hack to the validity context now that Nick has done nice things to the CalDet database Fixed a bug with the pinRecoCounter 2003-06-02 02:11 Sue Kasahara * CandNtupleSR/Module/NtpSRModule.cxx: Remove ntprec->Print(); call that was left in by mistake. 2003-06-01 17:11 Ed Larty * WebDocs/FrozenRel.html: # informed users of next comming frozen release 2003-06-01 16:50 Ed Larty * Validation/macros/data_reco.C: added a little 2003-05-31 17:14 Ed Larty * setup/: mytmp, setup_minossoft_tamu: test 2003-05-31 15:36 hartnell * LISummary/: LIAnalysis.cxx, LIRun.cxx, LIRun.h, LITuning.cxx, LIAna.C, LIAnalysis.h, LILookup.h, LIPlexMaps.cxx: Started working towards some code to calculate the residuals for each stripend and then make a TProfile - called GainCurves2() for now Used the new enum in LILookup Tidied up LIRun a lot, now uses f to prefix all data members. Added code to print all the data in the object Not much change to LIPlexMaps LILookup recommited with fardet settings LITuning now uses GetLed instead of accessing directly 2003-05-31 15:28 hartnell * LISummary/: LILookup.cxx, LILookup.h: Added the enum ELINearOrFarSide and used it throughout the package 2003-05-31 04:07 Roy Lee * CandFitTrackSR/AlgFitTrackSR.cxx, CandTrackSR/AlgTrackSR.cxx: If total range of track <=0., set momentum from range to 0. 2003-05-30 22:50 George Irwin * setup/: packages-R0.20.0, packages-development: Committed at request of Ed who is having all kinds of computer problems.