public TransducerDAQ(DAQ actualDAQ, BlockingCollection <double> collection, BlockingCollection <double> calibrateCollection) // Takes a DAQ parameter, so that we're sure it will be conected to thesae DAQ as the remaining classes when they are initiated { localDAQ = actualDAQ; _collection = collection; _calibrationCollection = calibrateCollection; RawDataList = new List <double>(); }