This is not really a question about CAM parameters, but do you know how to find the names of detectors that are loaded into the database (that is, the detectors that would appear in the Open Datasource... dialog)? I want to enumerate them for a detector selection widget I am building...
Bill.
Hello,
I found the last set of CAM parameters I needed, but I'll definitely hit you up next time I get stuck.
The Genie Programming Library manual gives all of its examples as Visual Basic. It might be easier to control the acquisition through a DeviceAccess object. OTOH, if you are...
Dagistan,
Assuming your device access object is called devAccess, then you can poll the device status like this:
HRESULT hr;
enum DeviceAcces::DeviceStatus status;
bool acquiring;
hr = devAccess->get_AnalyzerStatus(&status);
acquiring = ((status & DeviceAccess::aAcquiring) != 0)...
What are you interested in doing? I have not done Java, but I have written some software in C++ to control a multi-channel analyzer through Genie 2000. It was for-pay contract, so I cannot show you the source, but I might be able to answer some questions. I started writing a document about...
I still cannot get Genie2K to produce the report, but I have found out how to get the information out. In case anyone is interested, here is how to get the peak area of all of the peaks (leaving out all error checking for clarity):
long nPeaks;
float *peakArea...
Has anybody written programs that call the Genie 2000 SequenceAnalyzer object from the Genie 2000 Programming library?
I am trying to do a peak locate, followed by a peak area computation, then write the results to a report file. The Analyze method says the sequence executes without problems...