Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed pulse number #1

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .ipynb_checkpoints/rarity_software-checkpoint.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"cells": [],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 5
}
10 changes: 6 additions & 4 deletions dbs_GUI_dec_3_2021.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
E_duration = 0.001

Time_between_pulses = 0
pulse_number = 0
pulse_number = 100000
## changed from 0 to 100000


time_between_trains = 0
number_of_trains = 1;run_x_times_ = number_of_trains
Expand Down Expand Up @@ -139,10 +141,10 @@ def do_train():

timestamp_string = datetime.datetime.now().strftime('%Y-%m-%d_%H-%M-%S')

path = '/Users/granthughes/Desktop/Denman_lab/dbs_files/data_frames/dbs_run_dataframes/'
recording_folder = 'jhl2_test/'
# path = '/Users/granthughes/Desktop/Denman_lab/dbs_files/data_frames/dbs_run_dataframes/'
# recording_folder = 'jhl2_test/'

all_data_df.to_csv(path +recording_folder + timestamp_string + '.csv')
# all_data_df.to_csv(path +recording_folder + timestamp_string + '.csv')


print(all_data_df)
Expand Down
Loading